Can Not Access Sqlite Database File In Android
I am developping an Android apllication i wich i have an sqlite database which i want to extract the file (.db) to manage it with a manager (like sqlitemanager for example). For th
Solution 1:
In the image below,Let if com.android.browser
is the package name of your application then your database will be created in the db folder (not in the image ) as a sibling of lib.
Note: While working with sqlite database in android,I came to know that the created database will not show up even after the create
statement for the tables are executed.They(the databases) are visible only in the DDMS file explorer, when some row is inserted in the table.So make sure you are performing some insertion before you start dealing with the database.
Post a Comment for "Can Not Access Sqlite Database File In Android"