Adb
Adb

Reputation: 195

SQLite in Android: do I have to download any SQLite Administration (like MySQL) or it is already in device memory?

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

Answers (3)

Henry
Henry

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

user1301428
user1301428

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

sankettt
sankettt

Reputation: 2417

You Don't need to download anything.its already there.

Upvotes: 1

Related Questions