I have 800 insert
statements downloaded from network in the following format:
insert into mytable(col1,..,coln) values(val1,..valn);insert into mytable col...
I have heard of transactions ,ContentValue
s , and using union
but I can't figure out which one is better for this case.
What is the best way to insert them in sqlite database after truncating mytable
?