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
1answer
13 views

trigger insert different row

Gentlemen, The sqlite3 trigger that I want to create might or might not be possible with sql. Five tables are involved: Members Groups GroupMembers Accounts ...
0
votes
2answers
38 views

Android Create a TextView for every string in my Sqlite DB

I am trying to display a new toast for every item in my cursor, how would I do this? I've searched SO, but can't find any relevant, useful answers. Here is my code, but it doesn't work: ...
-3
votes
0answers
14 views

My Android Application Is Shutting Down While Retrieving A Non Existing From The Database(SQLite)

I'm new to Android... Actually I have an application related to SQLite. In the Database Table I have 3 columns namely ITEM NAME, COMPANY and LOCATION. I have stored a few values in the database. ...
0
votes
0answers
17 views

Android getting android.content.res.Resources$NotFoundException when reinstalling app with new resources

I made an application with DB and inserted records in encoded format. Now I have to release the same application with some new functionalities and inserted data should be converted into encrypted ...
0
votes
0answers
12 views

Radio group string data saving in the SQLite database

I have an list view with some set of questions and i have an radio group for each question. By the selection of radio buttons for the questions it wants to move to certain Activities and finally saves ...
0
votes
1answer
20 views

How should I notify the user that SQLite Asset Helper is loading the database for the first time?

I'm using the SQLite Asset Helper library to handle the dirty work of setting up and upgrading my app's database. It works really well but unfortunately I have yet to figure out a way to notify the ...
0
votes
0answers
18 views

filtering listview backed by sqlite database based on multiple criteria android

I have an EditText field in my app and a keyboard. I have a ListView generated by extended SimpleCursorAdapter with data loaded by CursorLoader from custom ContentProvider (backed by SQLite ...
0
votes
1answer
30 views

How to write SQLite Query

I want to write this Query in my android program Select root From temp2 where sourec='lee' and destination='jhon' I have tried something like this Cursor c=db.rawQuery("select root from Temp2 ...
0
votes
1answer
37 views

java.lang.IllegalStateException: Couldn't read row 0, col -1 from CursorWindow - Android sqlite issue

I am trying to fetch two values from a table in sqlite db in android. I get the following exception: 05-22 04:13:05.432: I/ActivityManager(251): app/com.nykkos.personalize[INITIAL] app.idle/false ...
0
votes
0answers
20 views

search a user entered string in tables from one database and return the name of that table in android

i am biginer in android development apps i have a problem with my code to handle multipal tables from one database i have a query as search a user entered string in tables from one database and ...
1
vote
0answers
19 views

Android-Query(AQuery) is used for SQLite Databse?

I want to fetch data from my sqlite database using AQuery. But I don't have any idea about that. So, Is it possible to fetch data from database using AQuery?? If yes, then How ? Thanks In advanced.
0
votes
2answers
43 views

How do you search or sort in SQLite Database?

I have an application that stores information in a database based on the information from 5 text fields. I'm having trouble being able to sort through fields or just even sorting from one field. Also, ...
0
votes
2answers
41 views

SQLite ListView CursorIndexOutofBoundsException: Index -1 requested, with a size of 0

I succeeded in setting up a ListView populated with pairs of Latitudes and Longitudes from an SQLite database. I wrote the code so that I could tap one of these pairs to call Google maps and navigate ...
0
votes
0answers
29 views

Android rawQuery is not updating the sqlite table?

I want to increment the column value by 1 in sqlite table.For this I am using the following query: myDb.rawQuery("UPDATE Service SET ContiniousNumber = ContiniousNumber +1 WHERE _id="+ localId, ...
0
votes
0answers
12 views

GreenDao freemaker.jar is missing

I just downloaded the new jar file for GreenDao in order to create my DB for the app I'm building. after going through all the process of modeling my entities and the connections between them, I ...
0
votes
2answers
18 views

SQLiteDatabase.endTransaction throws SQLiteDatabaseLockedException

My code: SQLiteDatabase db = ...; db.beginTransaction(); try{ db.update(...); db.setTransactionSuccessful(); }finally{ db.endTransaction(); } Now the problem is that endTransaction ...
0
votes
2answers
28 views

SQLlite android

I want to joint to tables in the same database. But any JOINT makes the work. Example: I have: table1: date | name |surname table2: date | brand and I want a table: table3: date |name ...
1
vote
1answer
28 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 ...
1
vote
1answer
34 views

caching large amount of data in android

I have some technical issue and not having much understandings about it. Please guide me. I actually have to cache large amount of data (including images and texts) in android after getting it from a ...
0
votes
0answers
20 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
2answers
43 views

SQLite database in combination with fragments

I'm changing my application from Activity's to Fragments, it's going great but I've one bug that won't let me open my database. Here's the error (from the logcat): 05-17 15:28:38.704 ...
0
votes
2answers
38 views

Android-How to start and keep service running after first app launch?

I am creating a database on first launch and on a button click I will insert values in the table.Now on that button click itself I will start a service by startService() method,that service will ...
0
votes
0answers
48 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
3answers
68 views

Application force close when i access delete method database

my application force closes when i access delete method, it works fine with insert and get items method. in databasehandler, public class DatabaseHandler extends SQLiteOpenHelper { private static ...
2
votes
0answers
18 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 ...
0
votes
3answers
49 views

How to use ORMLite with the native Android driver?

I want use ORM with ORMLite. But, the example show how use JDBC driver, I want use SQLite native Android driver, how I can do with this ? It's possible ? Can you show me just an example how get ...
0
votes
0answers
19 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
1answer
21 views

update query to last inserted raw id in sq-lite

I have a table in which i m inserting datas except one field at a time, another time i want to insert the non filled data, i m trying to update the table with this value. i tried the below query but ...
0
votes
0answers
25 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
28 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 ...
1
vote
2answers
33 views

copying data from table to table sqlite android

can I copy data from table to another using this query: // table1( tid , uid, name, link) // table2(mid , uid , name, link) query = "INERT INTO TABLE2 ("+ getIdFromFunction()+" , uid, name, link) ...
0
votes
3answers
33 views

SQLiteException: table already exists

I added to my DB the table called "MEDIA_TABLE" and i got the following error code: 05-15 20:56:22.976: E/AndroidRuntime(5968): android.database.sqlite.SQLiteException: table personal_stats already ...
1
vote
2answers
19 views

droping table vs removing its content sqlite

in my application I have to delete whole contents of a table and refill it many times in that case I have two solutions : 1- drop , recreat and fill the table "DROP TABLE IF EXISTS TABLE_NAME" 2- ...
1
vote
0answers
21 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 ...
0
votes
2answers
52 views

no such column in table SQLite android

helo i have created a table named produittable, i need to save some data from editText and after search it in a list, but the logCat says that no column named description_produit and for me it's there ...
-3
votes
0answers
20 views

How to sort row value with substring from left i.e string start in android sqlite? [closed]

I would like to have search database take place from left instead of getting substring being part of it and return the output.Kindly provide with a snippet.Thanks a lot.
0
votes
1answer
23 views

statement and method to update sqlite database

I need your help please. I've spent way too much time on this and I can only update the database if I specify the id number. Click listview item and send data to new activity for editing Edit data ...
0
votes
3answers
28 views

CursorIndexOutOfBoundsException while querying SQLite in Android code

Kindly note that I am trying to retrieve values from table in SQLite DB in my android app, on a button click event and present it through a ListView.I am able to insert records into the table on same ...
1
vote
3answers
45 views

How to use existing database in android? [duplicate]

It is possible to use an already created database sqlite in android? I already created database in sqlite in mozilla ad-ons. How should I use it in my android application? Anyone can help me??
0
votes
0answers
41 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
12 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 ...
-6
votes
0answers
45 views

Where can i save chat history in android? sqlite, sdcard, remote server (without loading time ), other [closed]

I created a chat application. That is taking a lot of loading time at the time of get the chat history from the remote server. If i will use sqlite then i think it is Ok and remove loading time to get ...
0
votes
1answer
211 views

Logcat message: error opening trace file: No such file or directory (2) Can anyone help me?

Java Code: public class SplashActivity extends Activity implements OnClickListener { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
0
votes
1answer
17 views

Context wrapper openOrclosedatbase exception in Android?

I am creating an application in which I need to use broadcast Receiver, My issue is, I can't pass Broadcast.this as database context. I tried to create another activity and used Activity.this in ...
1
vote
0answers
26 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
3answers
53 views

How to Fetch Record From SQLite in Android

I am not good at Android, learning things. I'm trying to fetch record from SQLite in Android. Here is my code. Please help where is my fault. Thanks. //DatabaseAdapter.java// package ...
1
vote
2answers
52 views

Insertion to SQLiteDatabase

I wrote this code: // CurrentFriendsTable // --------------------- //| _id | email | uname | // --------------------- // FFriend class class FFriend { String email, uname; // getter and ...
-1
votes
1answer
39 views

How many cursor we can open in sqlite database? [closed]

I have database with single table .Table contains around 7000 rows and only 3 columns including primary key. When i use cursor operation it is blocking my UI. You can refer these questions for that ...
0
votes
1answer
33 views

How to update document in sqlite database & phone storage in Android?

I am building an App in Android using web services. What I am trying to do is Synchronization function. I am getting some properties from web server and I have one boolean value into it, if Boolean is ...
0
votes
2answers
76 views

How to check whether Id already exist in the database or not in Android?

My problem is, I have created a app where I need to download documents, what I want is to compare the value/Id whether it is already exist in the database or not, If exist then copy and replace the ...

1 2 3 4 5 19