Reputation: 69
I get the sqlite database in android by using pull a file from the device in the file explorer and then using the SQLiteStudio to view the contents of the database.
I added some data on it and then my problem is that how do I export it that it can also be read on the android device? Because when I export the database file the format will be on HTML, PLAIN, SQL and XML.
Upvotes: 0
Views: 1870
Reputation: 1923
stop the application and then push the db back to the same data/data/databases folder.
Upvotes: 0
Reputation: 180040
Changing the data will change the database file you've pulled.
Just push the database file back onto the device.
Upvotes: 1