Reputation: 195
I need to work with SQLite in Android. So, do I have to download any SQLite Administration (like MySql) or it is already in device memory?
Upvotes: 0
Views: 171
Reputation: 43738
All you need is already installed. To inspect the database during development you can use the sqlite3 tool. It is installed in the emulator.
Upvotes: 1
Reputation: 1783
You don't have to do anything besides using the built-in tools in the Android SDK. For more information please have a look at the sqlite documentation
Basically you can use Java code to create databases, insert records into them, modify them etc.
If you want a graphical way to work on the databases, simply use Eclipse's DDMS View to navigate into your app's databases folder. From there, download the database on your computer and open it with one of the many sqlite applications available.
Upvotes: 1