-1

I have set of ArrayList like Arrays[]={A,B,C,D,E,F}.How to store this ArrayList in android sqlite database?

any example code?

henrywright
  • 9,776
  • 23
  • 84
  • 145
della alwin
  • 65
  • 1
  • 2
  • 9

1 Answers1

2

how about :

foreach ($array as array)

{  
insert into table (column) values ($array)
}  
Tarsem Singh
  • 13,979
  • 7
  • 50
  • 70