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
117 views

Connecting SQLite in Android App

I'm new in android development and for now I would like to create an app that uses a SQLite DB. I'm having trouble to understand one thing about the PATH of the DB. I saw this on a guide to succeed in ...
0
votes
3answers
564 views

What storage to use for android app content, SQLite or XML-file?

I need to store my android app content and want tips on what storage i should use. SQLite database or XML file(s)? Some characteristics of the app and the data: The application is used for tracking ...
0
votes
0answers
603 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( ...
0
votes
1answer
74 views

android database altering a table than adding a fixed value to all rows?

I have a table in my android app that is very simple. Has an id and a few longs/ints for values. I haven't updated my app in a while but I am working on a huge, totally revamped version. I thought ...
1
vote
2answers
376 views

Android SQL crash - No such column

I have spent the last couple of days having this issue. I have read all of the similar questions on here as well as consulted numerous tutorials and even though everything looks right to me, my ...
0
votes
0answers
890 views

android.database.sqlite.SQLiteConstraintException: error code 19: constraint failed after deleting a field and inserting a new one

I trying to add some key violation in my sqlite database so I can erase an entity and all the related ones to it. These are my tables : So when I create a taskReminder I can relate an Alarm (that ...
0
votes
2answers
249 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 = ...
3
votes
5answers
172 views

Same DB for multiple devices

I need to make my app faster at first launch. For the moment I use a JSON file that I parse and I insert data in a db at first launch. The problem is this can take long long time (Samsung spica :/) ...
0
votes
2answers
280 views

Android using a cursor on UI thread

I am wondering when or if its ok to use a cursor to get data from a sqlite database on the ui thread. Basically I use a cursorloader to get a cursor. And then I want to do something with that cursor. ...
0
votes
1answer
54 views

Accessing sqllite db from a thread

Have set up a storage adapter (Contextual) for help creating and managing a single database and table. Trying to access the table from a new thread for reading records and transmitting them via HTTP ...
0
votes
2answers
272 views

Displaying value of XML string array in listView instead of the relevant stored position

Firstly sorry if the question title is unclear, I couldn't think how to word it concisely. I have an app with basic database functionality to add a name, date of birth and job type of a person to a ...
-1
votes
2answers
378 views

Custom ListView using SimpleCursorAdapter

I'm trying to get some data that is stored in an SQLite database and display it in a custom list view. File Settle.java: public class Settle extends ListActivity { SQLiteDatabase DB; Cursor ...
0
votes
3answers
88 views

why can't I capture more than one name and insert into table of sqlite database?

I've created ListView, database and a table for it. I've like 5 names in the list. I need to capture more than one name into table of the sqlite database but I can only capture the first name from the ...
0
votes
0answers
72 views

Android application deleted after battery drain

I have an android application installed using adb install application.apk, this application has a SQLite DB which is being accessed by a separate application (service.apk) running as a service through ...
11
votes
2answers
1k views

Specify max sqlite db size for my app. How to handle db full exception

I was asked in an interview how can we set max size for sqlite db for our android app. And how can we handle when max size is reached? EDIT: Marina Lynn's answer below seems acceptable to this ...
1
vote
1answer
152 views

How to properly prepare Strings for SQLite insertion in Android?

So as I was learning Android, I got much advice on how to use ContentProvider and how to insert things correctly with that using SqliteDatabase. Now I have an error that makes no sense, at least with ...
0
votes
2answers
236 views

Activity crashes on onCreate()

I built a DB using SQLite and when I try to run my main activity file which populates the DB it crashes on onCreate. I doesn't get to load the activity. My onCreate method opens a db using ...
0
votes
0answers
83 views

Multiple ContentProvider and database lock

I am building an application having various database tables, and for every table I am using a separate content providers but having a single SQLiteOpenHelper. I am facing database lock problems. ...
0
votes
3answers
1k views

inserting to multiple tables with ContentProvider

I'm implementing a PRIVATE ContentProvider which has few tables with relationships (one to many, many to many). In my current implementation all of the tables are accessible by URIs. how can I ...
2
votes
2answers
348 views

Get the ID of a new record inserted into a database from the returned Uri

When you insert a new item into a database like this Uri uri = getContentResolver().insert(Tournaments.CONTENT_URI, values); is there any way to get the id from the uri that is returned so I ...
2
votes
3answers
168 views

What would happen If I don't close Database in Android?

This Title may sound a little bit crazy, but this is what making me confused. My app heavily uses local database operations. As suggested in Android docs and some blogs, I extended SQLiteOpenHelper ...
1
vote
1answer
113 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
682 views

how to view Android application Database running on my phone

I am installing and running an android application on my phone and for some testing purpose i want to see the databases of my application that is on my phone. now my question how to get those ...
0
votes
1answer
107 views

Android: How to make a button list with text info from database

I'm doing a simple "quest" app. Each quest consist of a checklist of things to do. I want to show the list of quests available with buttons showing the title of each quest. I have each quest and its ...
8
votes
1answer
330 views

How to use SQLiteDatabase.CursorFactory

Does anyone understand how to use SQLiteDatabase.CursorFactory on Android? I am looking to obtain a persistent SQLiteCursor object which uses an SQL SELECT statement where several of it's WHERE clause ...
0
votes
0answers
107 views

Gets values from MultiAutoComplete

I have a MultiAutoComplete TextView which is being populated from two cursors via MergeCursor. The first is the phone's contact list, and the second is from an SQLite DB which holds groups of ...
-1
votes
1answer
421 views

No such table error in android

I made a table in SQLite browser and import the data in assets folder in adnroid,now i am getting an error no such table, in my logcat,this is my code... public class CardDatabase { private ...
0
votes
1answer
2k views

Android SQLite Example using pojo and using CRUD operations

Can anyone please give me a simple example for using SQLite database in android using CURD operations also including the onCreate and onUpdate methods. Most importantly using POJO... If using POJO is ...
0
votes
0answers
47 views

Searching entire database in android irrespective of the tables using sqlite

I've created a database for my application and that database has multiple tables. Now I want to search the entire database and not just one or two tables for a string and return the string, ...
1
vote
4answers
931 views

Multiple SQLite Tables

I have been trying for almost a week now to create an SQLite database with more than one table, but with no success. I have searched for hours and looked at all the threads on the topic here, and I ...
1
vote
1answer
645 views

Populating Listview from Multiple Table SQLite DB

I have an SQLite DB with multiple tables and I want to read all the content from one of the tables, and use it to populate a list, but I have no idea why the app crashes when I try to read all the ...
0
votes
1answer
269 views

cursor with AND in where clause

How do I add an AND to my WHERE clause in an Android Cursor? For example: Cursor cursor = data.query( Banana.URI, new String[]{BananaColumns._ID}, ...
1
vote
1answer
176 views

querying my database using cursor

I have a database set up and I know I am inserting to it correctly. I am, however, having difficulty returning any data from it through a query. This is my main class and database helper class. ...
1
vote
5answers
359 views

how to fetch a row using id sqlite?

This is a simple one! yet, I am missing something. Please help me out. Here, I am trying to fetch values by id, but not able to do so. It is returning same values even after changing id's value. ...
1
vote
2answers
476 views

Using existing sqlite table in Android?

In my Android app, I want to use my existing sqlite database.I followed http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/ this tutorial and succeed in copying the ...
0
votes
1answer
261 views

Android SQLite: Is it a good practice to call getColumnIndex when retrieving values from a table?

Right now, I have my code looking like this: SqlTables.java: // Separate file public enum SqlTables { TABLE_1("table_1"), . . . TABLE_N("table_n"); final String name; ...
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 ...
2
votes
2answers
2k views

SQLiteCantOpenDatabaseException in android

In my app i have copy database(SQLite database) from assets.it is working fine.When first time install the app in emulator i got an error like, Failed to open the database. closing it. ...
3
votes
1answer
1k views

SQLite error code = 17

One of my tables in my SQLite database is returning this error code below: sqlite returned: error code = 17, msg = prepared statement aborts at 32[sql statement] But the data was successfully ...
2
votes
1answer
959 views

Why SQLite Database not showing in File Explorer?

I am using SQLite database in my Android project but when I want to check that database is created or not in file explorer then there is no any Database in data folder .Also it don't show on adb ...
0
votes
1answer
469 views

Unable to select all contacts with phone numbers matching IN clause?

I'm trying to figure out how to query the Android Contact ContentProvider with a list of phone numbers to retrieve contacts who have a phone number matching an item in that list. In straight SQL, I ...
2
votes
3answers
3k views

Caused by: android.database.sqlite.SQLiteException: Can't upgrade read-only database from version 0 to 1

Hi I am getting the following Log Cat error when trying to create the SQLite database Caused by: android.database.sqlite.SQLiteException: Can't upgrade read-only database from version 0 to 1 Here ...
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 ...
2
votes
3answers
743 views

Is it really necessary to create SQLite tables every time when app starts?

I've noticed in more than one SQLite tutorial that the table is [re]created in the onCreate() event of the class that extends SQLiteOpenHelper. I've already created my SQLite database and tables ...
0
votes
1answer
28 views

Getting error trying to insert new variable into SQLite DB

Well i tried to insert a new varibale called KEY_DAY but whenever i try read it and insert into the database it gives me the error below. If anybody knows where im going wrong it would greatly be ...
5
votes
2answers
2k views

Cursor: invalid statement in fillWindow();

I am getting error Cursor: invalid statement in fillWindow() What does it mean ? Thanks in advance
0
votes
0answers
719 views

SimpleCursorAdapter crashes in an activity

I'm trying to create a list activity that uses a SimpleCursorAdapter, but it just won't work. I know I'm getting the cursor correctly because when I have it print out to text all the values are there ...
1
vote
4answers
2k views

Android - Storing Audio Files into the SQLite Database

I am developing an application for Android phone. In this I need to use at least 400 audio files which can be played for some respective texts. Now my question is which is the optimized way to do ...

1 15 16 17 18 19