Top "Sqliteopenhelper" questions

SQLiteOpenHelper is a class from the Android SDK which can be used for easier handling of a SQLiteDatabase.

When is SQLiteOpenHelper onCreate() / onUpgrade() run?

I have created my tables in my SQLiteOpenHelper onCreate() but receive SQLiteException: no such table or SQLiteException: no such column …

android sqlite android-sqlite sqlexception sqliteopenhelper
Android SQLite Example

I am new to Android and I have to create an application where I need to use a SQLite database. …

android database sqlite sqliteopenhelper
Insert JSON data into the SQLite database in android

I 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
SQLite connection object leaked - Android

I am making my first android app, and I took some sqlite tutorials first, that taught me to use a …

android sqlite memory-leaks sqliteopenhelper
Cursor finalized without prior close() Android

In my application I have a listview. I get my data with a query from a SQLiteDatabase. When I get …

android sqlite sqliteopenhelper
SQLite Connection leaked although everything closed

I found many stuff like close the connection and close the cursor, but I do all this stuff. Still the …

android android-sqlite sqliteopenhelper
SQLiteOpenHelper - creating database on SD card

in my test android app I intend to create and access database file, which will be located on SD card. …

android database sqlite sd-card sqliteopenhelper
how to bulk insert in sqlite in android

I am using SQLiteOpenHelper for data insertion. I need to insert 2500 id and 2500 names, So it takes too much time. …

android sqlite sqliteopenhelper
android.database.sqlite.SQLiteException: no such column : id (code 1) while compiling : s

following error found when I click on "Insert" button Error Found :android.database.sqlite.SQLiteException: no such column : id (code 1) …

android sql-server android-sqlite sqliteopenhelper sqlite
"There is no default constructor available in android.database.sqlite.SQLitepenhelper" in Android Studio

Trying to extend class with SQLiteOpenHelper, but this error shows up : "There is no default constructor available in android.database.…

android sqlite constructor default sqliteopenhelper