Jai Android
Jai Android

Reputation: 2171

Is it necessary to install SQLite or it is pre installed in ANDROID?

Hello Everyone I'm really new bee in android and for that I'm confused to play with database. Let me come to the point, Actual I'm trying to save my form detail in database, but here I dnt know will I have to install database for that or it is installed while installing android SDK... Please HELP Thanks a lot.

Upvotes: 5

Views: 2190

Answers (3)

Heiko Rupp
Heiko Rupp

Reputation: 30934

It is pre-installed - you can directly use it from your tools. THere is a way to store a pre-populated db in the assets/ folder that can then be copied over.

See also http://developer.android.com/guide/topics/data/data-storage.html#db

Upvotes: 4

mudit
mudit

Reputation: 25534

It is already installed in Android device or emulator. You just have to create a new database for your application.

Upvotes: 0

Thorben
Thorben

Reputation: 6991

It comes with Android SDK and is located in /tools folder of your install!

You can add this folder to your PATH variable and thus open a database file from every command prompt!

But remember that there are Android ROMs which don't come with an SQLite Editor installed. You have to push the bin manually in that case.

Anyway, working with Databases from within your app will work on every ROM, cause that's a basic feature of the Android OS.

Upvotes: 0

Related Questions