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

3
votes
0answers
73 views

Sometimes duplicate strings come from android sqlite database

I have an sqlite database that I populate in a java program (I add the locale manually so it can be used with Android). Each entry in the database is essentially a sentence more or less, and I add all ...
3
votes
0answers
53 views

Closing the SQLiteDatabase in a Content Provider

I'm looking through the NotePad example that comes with the Android SDK and I was wondering if someone could clarify why the the variable db is never closed in the update function? It's usually a good ...
3
votes
0answers
114 views

How to check if contact exists in database android

How can i check if a specific contact is exist in the android database to add it to the database or not, the problem if i check with contact name there maybe another contact with the same name so can ...
2
votes
0answers
13 views

util.Calendar vs sql.Date in Android

What is the preferred data structure to use for objects that will interact with an Android sqlite database? util.Calendar or sql.Date? I want to use the less deprecated Calendar because my objects ...
2
votes
0answers
28 views

How to replace old document with new document in mobile storage using download manager?

My question is I need to use sync function after every 15 minutes, So what I want is, I will send doc_id to web server and server will return a new doc_Id with some fields, what i want is to replace ...
2
votes
0answers
77 views

Which is faster: Intent.putExtra or SQLite query?

I want to know that which way is faster in performance between Intent.PutExtra or SQLite query. Should I attach all attributes of an object with the intent i.e, ID, First Name, Last Name, Location, ...
2
votes
0answers
29 views

Return Cursor object from DatabaseManager?

I need some advice/help. I have a MainActivity and a DatabaseManager class. I'm not sure how to handle the data from the DatabaseManager to the MainActivity? I need to read some data in the ...
2
votes
0answers
137 views

lenovo Ideapad application crashed when loading facebook.com in webview

application crashed when loading facebook.com in my webview on lenovo IdeaPadwith following exception this is not from my application but exception thrown by the system. same crash is observed when ...
1
vote
0answers
17 views

what all data needs to be deleted to make it equivalent to application uninstall

I came into a very strange problem. In my application, there is a synch process that runs every 3000 milliseconds and synchs the data from local database(SQlite) to server database. Now when I create ...
1
vote
0answers
16 views

Create a foreign key in SQLite database browser

Sorry for novice question. I have created my tables using SQLite database browser, but: I do not know how can I specify my foreign keys using the application? How can I create a relationship ...
1
vote
0answers
20 views

Creating two tables in two different classes for sqllite - android

I am creating 2 tables in the same sqlite database (Meaning both tables having same database name and helper name in both the classes) but in two different classes, when i run for first time, A is ...
1
vote
0answers
78 views

Sqlite: cannot open file at line

This error happened occasionally when I did some user/stress test on Android. Files under /data disapppeared and system server crashed after this error occurred. I am curious about the name of ...
1
vote
0answers
765 views

Service com.android.exchange.ExchangeService has leaked ServiceConnection com.android.emailcommon.service

i am just trying to send data to the server. but it does not do so, i have paste my program please correct it..... package com.example.server; import java.sql.Connection; import ...
1
vote
0answers
81 views

android database, reading problems

UPDATE: in my project I have androrm, sometimes I a get the following error, everything works fine but come in when it appears my log 04-19 14:47:01.933: W/System.err(23696): ...
1
vote
0answers
41 views

Sqlite this Query not supported in above 2.2 version in android

I have implemented this query in my project and Its working perfectly in < 2.2 version only. If I try to run in version > 2.2 then this query is not working. Can you give some idea for this? ...
1
vote
0answers
35 views

In Android ContentProvider backed by SQLite, how should I implement insertOrUpdate semantics?

This is in the case where there is a UNIQUE column apart from the _id column. I can see three options: Leave insert as insert-if-no-conflict, and update as update-if-present (this seems to be the ...
1
vote
0answers
66 views

android.database.sqlite.SQLiteCursor@

I got that Error. How could I eliminate the android.database.sqlite.SQLiteCursor@ instead of INTEGER value alone? And how could I get the integer Value from my consumer table which is AccountID and ...
1
vote
0answers
183 views

Android case-insensitive cursor query with LIKE operator (working for all locales)

I'm trying to make a filtering query: public Cursor runQuery(CharSequence constraint) { return getActivity().getContentResolver().query( Phone.CONTENT_URI, new ...
1
vote
0answers
38 views

How to upgrade sqlite database from db file

I have Android app that use SQLite database. I'd like to upgrade database from SQLite *.db file created from SQLServer using this converter. Any idea or example how to do that? Thanks!
1
vote
0answers
31 views

scheduling the Message or any peace of code executes through android phone based on time time intervals

currently we are planing to do this using alarmmanager service .. check the below code is there better approch? Intent intent1= new Intent(ScheduleManagement.this,ScheduleManagementService.class); ...
1
vote
0answers
95 views

Error While Inserting in Sqlite Database Android

I am stuck. Have been looking for hours for a plausible solution but no clue. Here's my creation code: public class EventData extends SQLiteOpenHelper { public static final String ...
1
vote
0answers
176 views

How to solve Sqlite Exception: reached max size for compiled sql statement cache for database

I am calling selectQuery. public Cursor selectQuery ( final String queryString) { try { return getReadOnlySQLiteDatabase().rawQuery( queryString, null); } catch ( Exception e ) { ...
1
vote
0answers
113 views

How to know if contact is exists uniquely in ContentProvider Uri table

How can i check if a specific contact is exist in the android database to add it to the database or not, the problem if i check with contact name there maybe another contact with the same name so can ...
1
vote
0answers
199 views

store elements from xml using sax parser to sqlite database on android

I'm parsing an xml file with sax parser on android and store values of elements and attributes in sqlite database composed of 2 tables ( channels, program) this is xml file : <channel ...
1
vote
0answers
96 views

ContentResolver differences between GB and ICS?

My app implements a custom content provider, I have Android JUnit tests for it both for basic operations and more complex ones (using ContentProviderOperations). my tests pass on a GB emulator, but ...
1
vote
0answers
871 views

SQLite: library routine called out of sequence - how to resolve this crash?

Okay, so my app is perfectly working on Android 2.3 and crashes on 4.0.4. Im parsing an XML and saving data to my SQLite database. This is not every time happens but really often, sometimes on ...
1
vote
0answers
102 views

handle large Parcelable ArrayList in Android

I'm developing an Android app that is a client to a JSON webservice API. I have classes of resource objects (some are nested) and I pass results from an IntentService that access the webserive using ...
1
vote
0answers
54 views

how to access sqlite database across platform

I am creating a database on my android phone's sd-card at custom location and I am reading this db file byte by byte and sending it to PC through making socket. At PC side I received and write it ...
0
votes
0answers
17 views

Cant execute delete query properly using rawQuery

I want to deleting some rows of table info comparing another table type, my code goes as below. I am not getting any error or exception still I am unable to delete the data. Please suggest me String ...
0
votes
0answers
11 views

Android SkImageDecoder::Factory returned null (Blob decoding)

I'm trying to decode a blob, from SQLite database in Android, to Bitmap in order to display it, but I always have the error : SkImageDecoder::Factory returned null. I've searched answers to this ...
0
votes
0answers
21 views

Android restore backup from database file on sdcard

There are a few questions here on stackoverflow where people use BackupAgents to synchronize the apps data with googles cloud (see here). In my specific case the requirements are much more restrictive ...
0
votes
0answers
9 views

How to replace files in same location using Download manager in Android?

In my app I need to download some files(images,Pdf&txt). I am successful to save files through download manager in Downloads folder, But I want if file already exist in downloads folder and user ...
0
votes
0answers
23 views

Is it possible to use date functions when creating an SQLite view?

Say that I have a table with the following schema: create table events ( _id integer primary key autoincrement, title text not null, date text not null ); And I want to create a view ...
0
votes
0answers
24 views

SQLite in table no such column quantite_stock

I have created a table in SQLite in android with all columns and the logcat says that no such column quatite_stock in table produittable please tell me what's wrong. The column is there why it tells ...
0
votes
0answers
35 views

Parse Json text as question mark

I'm using Json for getting text from sql database. There are many Unicode formats like UTF-8 for saving data in database. I used UTF-8 for saving text. Text is not English. It is Persian or Arabic. ...
0
votes
0answers
11 views

Getting Less items after synch without app reinstall and all items after app reinstall

So after logout, my application data in sqlite DB is pruned and when I login back, the same data is taken from server DB. The data transfer from local db to server db happens when a new record is ...
0
votes
0answers
28 views

How to improve performance with UNIQUE column SQLite Android

I have a table with a UNIQUE column. it's for not add the same code "KEY_CODIALERTA + " TEXT UNIQUE". it works well but when I try to add the same code then I see error in "LogCat" saying that I cant ...
0
votes
0answers
32 views

Eclipse plugin “Questoid SQLite Browser” gets error org.antlr.runtime.RecognitionException

Trying to user the Eclipse plugin android-sqlite-browser-for-eclipse on my mac but get the error listed below when trying to open a db-file on the emulator. Some googling lead me to this so I ...
0
votes
0answers
22 views

delete and update file in android download manager?

I am new in android, I have broadcast receiver in which I have performed synchronization function. wen user will select 15 mints, what will happen is, I will send a id's of saved document on server ...
0
votes
0answers
11 views

how to delete and update downloaded doc in download manager in android?

i a trying to sync the downloaded document with new documents. I have downloaded document list in database and now what I want is when user press 15 minutes button then download manager replace old ...
0
votes
0answers
23 views

I have 2 activities & want to save the records in its fields, also must edit and update the fields and save it finally to send it to web service

FIRSTPAGE.JAVA Here there few edit text and to be saved temporarily @Override protected void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); ...
0
votes
0answers
61 views

draw line graph using data from sqlite, AchartEngine

i want to draw line graph using data that user enter and are stored in sqlite. the axis is day and glucose value. i don't know how to retrieve data and store in array. please help me. Thank you ...
0
votes
0answers
55 views

Fetching multiple data from database by sending spinner selected item to database

i have one spinner name bed whose values are 1,2,3,4 which are fetched by another class file and that selected item is send to database know database returns the data which is similar to selected ...
0
votes
0answers
43 views

Using AutoCompleteTextView with sqlite database?

I wanted to use Autocomplete functionality in my application.I have a table with 4000 rows of data in it. How can I use CursorLoader for implementing AutoCompleteTextView .
0
votes
0answers
51 views

display data from sqlite in Table/Grid layout, Android

i want to retrieve data from sqlite db, and display it in the table or grid layout. The table/grid layout will dynamically expanding as the data also have been inserted. before i'm using table ...
0
votes
0answers
89 views

Setting Text of EditText in DialogFragment not updating

I have a DialogFragment showing the details of a TableView with several EditTexts to update the data (from sqlite database). The first time i open the Fragment, it works normal, but if I open it up ...
0
votes
0answers
30 views

Fill the Spinner In Monodroid

My problem Bind the data table in a database is a spinner., I wrote the code public static string sMessage { get; set; } public static void PopulateSpinner(Android.Content.Context context, ...
0
votes
0answers
37 views

SimpleCursorAdapter() Depracated, how can I replace it?

I am trying to display data from SQLite to a listview. I try to use the constructor SimpCursorAdapter() but it says it's deprecated and i can't use it. Anyone any idea on how to do this without in any ...
0
votes
0answers
29 views

Can we read the data from Database if some other function is performing some write operation?

I have a table name say "XYZ" in my Database. I am having parallel API execution so whenever response comes it goes to Parsing Class and then performs DB insertion and shows up the data on screen. ...
0
votes
0answers
38 views

Slow to call onLoadFinished

I'm using Loader and Content Provider to fill a listview with data from my database. My problem is that, if I use the line below in my Content Provider to get data from database, the query and ...

1 2 3 4 5 7