Hello,
I'm porting an app from android to tizen and I use tizen web html5.
I used a database about 10M capacity on android ,and I would search my db
when use some functions.Now I want to port this to tizen.
Because of not support extra db on tizen(right?),Is there a way to store high
capacity data on tizen?
I have tried opendatabase(), I want to write all of the data from the 10M db to a txt doc,
read the txt and insert data to a new db which created by using opendatabase() when first launch my app.
But it's like that the second or third time I use it ,it creates new db,not finds created db.
openDatabase("aaa.db", '1.0', 'Offline storage', 10*1024*1024).
How could I do?