Android uses SQLite database to store and retrieve data persistently.There has been many code snippets[question regarding] which can be of `how to to create and use the SQLite database with android`.

learn more… | top users | synonyms

0
votes
2answers
579 views

Application crashes on installation with error sqlite3_exec - Failed to set synchronous mode = 1(Normal)

I'm running my application on Samsung Note with android version 4.0.4. It's not crashing on devices like Samsung POP which is running android 2.2. And on Motorola Xoom running Androi 3.1. When I'm ...
0
votes
2answers
2k views

Android Custom Calendar and Reminder

My application will contain a custom calendar, and according to this calendar user can create events and reminders. And the thing is, is it possible to create a custom calendar in android ? (I ...
2
votes
2answers
211 views

Close was never explicitly called on Database

I have a listview that is sourced by an sqlite db. I call fillData() at several different points to update the listview. private void fillData() { readDatabase.open(); Cursor itemsCursor = ...
0
votes
0answers
45 views

Update query not reflected in the DB

String restructureDbQuesry="UPDATE "+TABLE_DEFECTS+" SET "+MARKER_ID+" = "+MARKER_ID+"-1"+" WHERE "+IMAGE_ID_F+" = " +imageId+ " AND "+MARKER_ID+" > "+markerId; Cursor resultUpdate = ...
0
votes
1answer
220 views

Unable to start activity ComponentInfo when new activity is called: NullPointerException

I am getting this error when i call a new activity via intent and sending values via intent here i gave the class calling nw class and their codes separately please check the log cat too i am getting ...
3
votes
2answers
210 views

How to know all open connections of data base using green DAO..?

Hi everyone iam new to android and using green DAO for managing database but iam frequently getting a database not closed exception as iam doing that in Application onTeriminate(),iam maintaining only ...
1
vote
1answer
78 views

Sync device data with web-server

I have data in my application which must be updated on the server on the basis of network availability. I store this data on a local database on android using sqlite. Currently the idea is: Data ...
1
vote
1answer
771 views

Android Sq Lite closed exception

I have no solid back ground of synchronization. I think, this issue will be fixed , when i use synchronized method.but, any one can help me to fix this issue. Code is below: public ...
1
vote
1answer
803 views

sqlite returned: error code = 1, msg = no such column:kitchen1

I've been getting this error for two days now, and I can't find the problem with my code. here's the database code. SQLHandler.java import android.content.ContentValues; import ...
1
vote
1answer
1k views

How fix this error? : trying to requery an already closed cursor android.database.sqlite.SQLiteCursor@409dfcd0

I m search this error in stackoverflow and google.But I dont find out.I writing this code.it is working on ics 4.0.3 but it gives that error on android 3.2. I do not understand.This code on my main ...
0
votes
3answers
220 views

How to attach .db file with another .apk android

i am making dictionary and i have so much data to load. I want that i create a project which first load the dictionary words in database and the after i use this .db file in my 2nd project which is ...
0
votes
2answers
209 views

how to save intent data passed from 1st activity to 2nd activity

I have Myactivity which is getting the intent data from the former activity. The intent data is sent through a spinner of the activity. I want to save this intent data of the spinner to the Myactvity. ...
0
votes
0answers
601 views

Android API 8 , 10 ContactsContract.Data.HAS_PHONE_NUMBER no such column

The below query runs fine on my device (API 15). It does not work in my emulator running API 8 or API 10. Here is the query: Cursor contactsCur = getContentResolver().query( ...
10
votes
5answers
316 views

Android Pushing Updates on Play Store

I have an app that depends on SQLite for data which is populated by xmls shipped with the app in the assets folder. When you run the app the first time it sets a shared preference config_run = ...
4
votes
1answer
136 views

Correct way to handle Bi directional 1:m in Green-DAO

what is the correct way to insert a new object into a Green-DAO DB when dealing with a Bi Directional 1:m relation? Lets say, I have a chat application that has a conversation entity and a message ...
2
votes
3answers
409 views

Insert Multiple Rows in SQLite Error (error code = 1)

I am getting an error when executing the following query in SQLite Android sDataBase.execSQL(query); insert into Contacts(ID,FirstName,LastName,PhoneNumber,EmailId,Status) ...
2
votes
4answers
122 views

How to randomly set text to buttons from SQLite without repetition?

I have a db imported to assets, and i read from it and randomly set text to buttons and a texview, with code below: mDbHelper.open(); Cursor c = mDbHelper.getTestData(); ...
2
votes
4answers
309 views

Displaying 100000+ items in ListView from SQLite database

I'm trying to display all the items from a pre-filled database (with over 100000 rows) in a ListView using cursors. It works, but it takes a couple of minutes for the app to start and show the ...
2
votes
1answer
303 views

load data spinner from sqlite and mysql

I try this tutorial to load Spinner from sqlite and mysql. Tthe tutorial works, but this app can't load from mysql twice. So this app is load mysql when first debugging only or when data is empty. ...
2
votes
2answers
3k views

How to use String[] selectionArgs in SQLiteDatabase.query()

How do I use the selectionArgs String in query()? I wish I could just set it to null, as I have no use for it. I am just trying to load an entire unsorted, ungrouped table from a database into a ...
1
vote
1answer
52 views

Is it good practice to use ContentProvider to handle database operations?

First let you know I am new in Android. Is it good practice to use ContentProvider to handle database table operations only for one application? Trying to create multiple classes to handle database ...
1
vote
4answers
65 views

Decrementing a value not working

I have a column that is to be decremented by 1. The following code doesn't seem to be working. ContentValues dataToUpdate = new ContentValues(); dataToUpdate .put(MARKER_ID, ...
1
vote
1answer
200 views

Accented Search in sqlite (android)

I have a column where some of the elements contain accented letters. eg : Grambú My requirement is that when I search for "Grambu" I should get "Grambú" in the results as well. For this requirement ...
1
vote
1answer
219 views

SQLiteOpenHelper one for each table in database

i'm starting to develop an app, with database functionality, i have a question: is it better to have a single big SQLiteOpenHelper subclass which will define the oncreate and onupdate for all the ...
1
vote
2answers
843 views

SQLiteException “cannot commit - no transaction is active” while inserting with CONFLICT_REPLACE

I have some trouble updating my database. This is the log: 12-02 16:18:57.502: D/Data Update(21218): Start updating databases 12-02 16:18:57.502: D/Data Update(21218): update size: 5 12-02 ...
1
vote
1answer
94 views

Running Total-Order By Date in SQLite

I have a table as follows: CREATE TABLE [TBL_test] ([ID] int PRIMARY KEY,[RDate] CHAR(10),[Debtor] int, [Creditor] int); insert into [TBL_test] values(1,'2012/10/11',100,0); **insert ...
1
vote
1answer
170 views

java ,Properly using Static variables to prevent deadlock - Synchronizing

I am new to android programming and 've not thoroughly studied java before . I am really confused on how to use synchronized to ensure thread safety on static variables : I usually create a class ...
1
vote
2answers
1k views

Don't have database lock! in android

I've been getting this error recently I know the cause but i don't know how to fix it. here is the error from the logcat: 10-05 02:34:00.177: E/SQLiteDatabase(1111): close() was never explicitly ...
1
vote
1answer
112 views

Allow users to only access certain tables in my content provider

I'm planning the database for my app. I would like to allow others to use my data. However, I only want them to access a couple tables. Is it possible to only allow other apps to access certain ...
0
votes
1answer
138 views

Creating directory structure in database and storing data in it

I am stuck with how to create directory like structure in sqlite database. private void listFilesForFolder(Entry list) throws DropboxException { for (Entry ent : list.contents) { ...
0
votes
1answer
80 views

How to load themed activity after correct or wrong answer in a quiz?

OK, I was adviced to make a new thread for my question. I am using imported SQLite database. Anyway, I have made two themed dialogs for right and wrong answers, and I want to show them when right or ...
0
votes
2answers
194 views

How to display data from SQlite to many textview

i have a problem to display data from sqlite to many textview. Example, for name, i would like to put at the textviewName. below is my code. protected void onCreate(Bundle savedInstanceState) { ...
0
votes
1answer
466 views

error inserting android.database.sqlite.sqliteconstraintexception error code 19 constraint failed

I know there are so lot of threads about this problem but none of my own problem. I have a spinner connected in the database that displaying the foreign key of the specific table. And it appears ...
0
votes
1answer
45 views

Android SQLiteDB doesn't finish adding values

My SQLiteDatabase is giving me some trouble. When the user closes the app, in onPause() an AsyncTask begins to save the data. I don't know if this is the best way to do it, but the way I have done it ...
0
votes
3answers
178 views

Android SQlite not updating the data

My DatabaseHandler Class: public class DatabaseHandler extends SQLiteOpenHelper { private static final String LOG_TAG = "debugger"; //database version private static final int ...
0
votes
0answers
534 views

Android program to convert the SQLite database to excel

I want to change the sqlite database .db file to excel. But not able to find what exactly I have to do. Can anybody please elaborate it in simple way that what I have to perform to achieve this ...
0
votes
1answer
344 views

How to automatically re-query with LoaderManager

I have an app that shows data from a SQLite DB and the data changes constantly, so obviously, I thought I should use a LoaderManager to show the data. do I read a bit about using the LoaderManager ...
0
votes
1answer
602 views

Delete Query And Refresh in ListView in Android (sqlite)

I'm new to Java, Android, and SQLite, and I'm stuck at this. I have columns, namely _id (autoincrement), type, amount (int), category, and description. Three queries. Firstly, I am not able to delete ...
0
votes
1answer
48 views

Exception while Retriving data from the SqliteDatabase

I have written the code to Store the image in sqlitedatabase and also written the method to getall the records,but while getting data I am getting Exception as Nullpointer Exception.I am doing ...
0
votes
2answers
248 views

SQL no such column error when it does exist

When I query my database I keep getting an error saying SQLException: no such column and i do not understand why when my query looks just fine Cursor nameCursor = ...
-1
votes
3answers
278 views

inserting current date and time in sqlite database

I want to create a table in sqlite in which one of the field is for date in which date and time of current instance should save. which data type should i use? i m planning to use 'timestamp'. how to ...
-1
votes
1answer
218 views

Exporting SQLite Table data as XML

I am getting a Null pointer Exception while trying to export my SQLite database's table into an XML file. StackTrace: PasteBin Link --Update 2: I just don't get it of what is passed in(at time of ...