Top "Android-sqlite" questions

Android uses SQLite to store and retrieve data persistently.

Warning : Do not hardcode "/data/"; use Context.getFilesDir().getPath() instead

I developed an application in which I copied the database from the assets folder to my path which is hardcoded. …

android database sqlite warnings android-sqlite
Android SQLite query where column is not null and not empty

I cannot figure out the syntax for the .query call. I need to select all records that match a certain …

android sqlite android-sqlite
GROUP_CONCAT in SQLite

I am having data like this 1 A 1 B 1 C 1 D 2 E 2 F 3 G 3 H 3 I 3 J 3 K by using this …

sql sqlite android-sqlite group-concat
When the SQLiteOpenHelper onCreate method is called?

I tried to create an SQLite database and do some stuff with it. But I found that my onCreate method …

sqlite android-sqlite
SQLite Database gives warning automatic index on <table_name>(column) After upgrading Android L

I have upgraded my Nexus 7 with Android 5.0 Lollipop, Before that my application going well with SQLite Database but now Whenever …

android android-sqlite android-5.0-lollipop android-logcat
java - java.lang.IllegalStateException: Couldn't read row 0, col -1 from CursorWindow

I'm creating an app which uses SQLiteDatabase to store items of a ListView. But, I get an error while populating …

java android sqlite android-sqlite sqliteopenhelper
How to set timer to call a function every n minutes?

I want to set up a timer in an Android application that will call a function after every 15/30/45 and n …

android android-sqlite android-alarms
Update with parameter using room persistent library

How will I update an entire row using room library, the @Update take a @Entity annotated object and updates it …

android android-sqlite android-room
Android Sqlite Performance

I have been doing some experiments to measure sqlite performance on android. I was disappointed a little bit with the …

android android-asynctask android-sqlite