Android uses SQLite to store and retrieve data persistently.
I'm creating a table with foreign key references. I'm wondering about the required syntax. Mostly I've seen the following (from …
sqlite android-sqliteim new on Android. I have some trouble with the insert statement in the database, when im running the application …
android insert android-sqliteI need to save a string array to the database but it won't let me. This is what I have: …
android android-sqliteSorry for novice question. I have created my tables using SQLite database browser, but: I do not know how can …
android-sqlite sqliteHow do I use the String[] selectionArgs in SQLiteDatabase.query()? I wish I could just set it to null, as …
android android-sqlite android-cursorLast year when I checked about SQLite on their web site, the recommended SQLite database size was 2 gigabytes. But now, …
sqlite android-sqliteI'm trying to debug my application on a real device but I get this error: ERROR/AndroidRuntime(981): Caused by: java.…
android android-sqlitepublic int getRecordsCount() { String countQuery = "SELECT * FROM " + TABLE_LOGIN; SQLiteDatabase db = this.getReadableDatabase(); Cursor cursor = db.rawQuery(countQuery, null); if(…
android sqlite android-sqliteI want my users to be able to reset the application, then I need to reset the SQLite database that …
android sqlite android-sqliteI want to insert the data from JSON array into the SQLite database. I have created two classes CategoryHelper.java …
android json sqlite android-sqlite sqliteopenhelper