-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
  • 10,070
  • 23
  • 89
  • 150
della alwin
  • 65
  • 1
  • 2
  • 9

1 Answers1

2

how about :

foreach ($array as array)

{  
insert into table (column) values ($array)
}  
Tarsem Singh
  • 14,139
  • 7
  • 51
  • 71