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?
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?
how about :
foreach ($array as array)
{
insert into table (column) values ($array)
}