0
votes
2answers
11 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
1answer
22 views

How do I check if a “name” value exists in a SQLLite Database?

I have a SQLLite Database of sites with a name field. I have save and create buttons. I want to run my addRecord() or updateRecord() depending on whether or not the value in the name field exists. I ...
-1
votes
0answers
24 views

Fetching Data from Database Issue in Android

I have three layout: Main Layout(with a button "Profile") Profile layout(With textview to show data from database and two button named as "Edit" and "Back to Main") Edit layout(With textview and ...
0
votes
0answers
16 views

How to export my sqlite database to csv in android?

I would like to export an sqlite database to csv in android. I tried with importing with opencsv.jar but it didn't work out. Is this an issue due to ADT version 17 upgrade. Is there any other way to ...
1
vote
1answer
27 views

Change bit depth from Bitmap

So I have an image with a 32 Bit depth, but when I make it into a blob for my SQLite database, and read it out again with the following code it only has a 24 bit depth (the quality is lower, i want it ...
1
vote
1answer
22 views

query method in SQLiteDatabase

I want to know how to use query method that have where clause with like property. basically what i want is to select all the columns WHERE C_NAME column is LIKE keyWord. I've tried this, but it ...
2
votes
3answers
40 views

database is not created in android

In my application activity was running fine but database is not getting created also there is no error in logcat. Main activity class: package com.example.testdb; import android.os.Bundle; import ...
0
votes
3answers
36 views

Error in Sqlite database

While running my application using Sqlite i am getting the below error. SQLiteLog(779): (1) near "SQXC31DLT": syntax error System.out(779): DATABASE ERROR android.database.sqlite.SQLiteException: ...
-2
votes
0answers
23 views

how to implement sqlite on android and access to an external database? [closed]

I must do a project for my university and i would like to implement an sqlLite database on my android application. As i never did before an implementation of sqlLite, i'm a little worried ... ...
0
votes
2answers
20 views

Getting database information to another class in Android

I basically used this tutorial on how to make a SQLite database, which is fine. I now have a new class named camera, where I want to get all the (or a single) phone numbers that are in the database, ...
0
votes
2answers
40 views

Android sqlite select statement troubles [duplicate]

I am trying to get some data from a sqlite table named Course, with a attribute Name. I build the table here. private static final String COURSE_ID = "CourseID"; private static final String ...
1
vote
0answers
24 views

SQLiteOpenHelper and close method

I'm making some tests and every time I call to SQLiteOpenHelper.close() and then I try to reopen the database with, for example, SQLiteOpenHelper.getWritableDatabase() I get the exception ...
0
votes
0answers
26 views

Android application contact groups

I need phone contacts to be divided into groups in my application, but only in my application so i don't want to add any groups to original phone contact database. I have made my own database to have ...
-1
votes
1answer
65 views

Can't get any data from sqlite db on Android

I have a DB helper that does this function: public Cursor getCourseNames() throws SQLException { mDb = mDbHelper.getReadableDatabase(); return mDb.query("Course",null, COURSE_ROWID, null, ...
0
votes
1answer
23 views

How to pass hashmap from activity page to dbhelper class

I need to know how could i pass the data from activity page to dbhelper class without intent service.I am getting the data from server and passing the data to the database. i am really confuse. i ...
0
votes
1answer
27 views

there is any way to save my shared preferences data into sqlite database in android

problem : i wanted to save my shared preferences data into sqLite database permanently.i here provides my code which store my data into shared preferences folder but when i am trying to store new data ...
-1
votes
0answers
18 views

Service running database android

I am developing an app that runs a database via service, here is my implementation of service private Timer mTimer = new Timer(); static final int UPDATE_INTERVAL = 1000; SQLiteDatabase sqlh; ...
0
votes
1answer
17 views

SQLite copy column values to a new column and/or with function

This is SQLite for Android... I am inserting a new column using ALTER TABLE tablename ADD COLUMN. I have 2 questions: Is there a way I can just copy values from existing columnA to this newly ...
0
votes
2answers
20 views

Phonegap jQueryMobile issue: lost data on switch off

I am new to Phonegap. I am using Phonegap2.3.0 for android and sqlite db. When I add datas in the tablet and switch off it all the datas are lost. Can I use localstorage. Using SQLite Database ...
1
vote
2answers
32 views

Android, SQLite: Inserting data in while clause is very slow

SOLUTION AT THE BOTTOM OF THE QUESTION I have a FTP Server with more than 3'000 pictures on it and I save the picture names to an ArrayList. After this I'd like to save them from arraylist to ...
0
votes
0answers
16 views

How to get the record from set of values

I have values in my database in perticular column like 1,2,3 7,8,1 1,3 now from that i want to pick value 1 how to get it in Android.In Mysql there is function called find_in_set is there any ...
0
votes
3answers
54 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 ...
0
votes
0answers
10 views

Phonegap 2.6 insertId and rowsAffected is always undefined. Why?

Recently I upgraded my phonegap app from 1.5 to 2.6 I am using local storage database. I found that, insertId and rowsAffected always returns null. This was working fine with 1.5 Is this a bug with ...
0
votes
1answer
30 views

Android SharedPreferences or SQLlite Storing

I have a question. In my project I have some user preferences which are stored in the SQL database. There are about 200 records and the table has 3 columns. This records do not change, only if the ...
0
votes
1answer
42 views

how to check if the column of a SQLite dabase is null

i am not able to get a reliable result to tell if the collumn of a database is null or not. i tried using a query checking to see if the the column of the database returns null or a string value of ...
0
votes
1answer
27 views

Sql_config failed error =21. this should never Occur

I have a problem with SQLite in Android system (2.3.6) with a motorola defy mini When I open the database with the open method I coded in a personnal class, i receive the error sqlite_config failed ...
0
votes
4answers
44 views

ListView is not updating the entries from array

I am trying to fiddle with sqlite database,listview and arraylist.On a click of button the data gets inserted into database,and then using cursor the data is extracted by 'select' and ideally should ...
-1
votes
2answers
45 views

Insert data in Sqlite database in Android

I am working in databases,i got an error regarding sqlite,I have created table in sqlite manager and store as a databases.sqlite in package folder itself. I need to add data in sqlite without ...
1
vote
2answers
42 views

how to store JSON object in SQLite database

how do I store a JSON Object in an SQLite database? What is the correct way? one place is the blob type column. if i can convert the JSON object into byte array and use Fileoutputstream the other ...
1
vote
2answers
22 views

Few issues regarding accessing remote SQL Server from Android

I have an application in hand where we need to use a tab for data entry. The tab loads initial data from the remote server. Subsequently remote server needs to be updated, inserted (for new data) as ...
0
votes
0answers
38 views

Android: IntentService getting Result back to ListFragment

I built a fully-functioning FragmentActivity based on this demo. Originally (like other activities in my app) the data was being loaded into the FragmentActivity.ListFragment.ListView from SQLite in ...
1
vote
5answers
45 views

SQLite, getting last item in table

I need some help with using the database that I created. I need to access the last item in the database. This is my code that gets a single item. How can I change it to only get the last? // Getting ...
0
votes
2answers
37 views

Error in database

Please help find the problem in my code. I'm trying to check if the user entered a valid email address and if its already existing. I already trap if the user entered invalid email address through ...
0
votes
3answers
38 views

Order of list items populated from SQLLite DB is incorrect

I have a SQLLite DB that stores an ftp site's login information (name,address,username,password,port,passive). When an item (site) is clicked in the list, it's supposed to load the name, address, ...
0
votes
1answer
27 views

How to prevent to create database again from beginning

I have created a database like this: public void onCreate(SQLiteDatabase db) { db.execSQL("CREATE TABLE " + "sorular" + " (_id INTEGER PRIMARY KEY," + ...
2
votes
0answers
43 views
+50

Intent.ACTION_PICK returns empty cursor for some contacts

I have an app in which one aspect is for a user to select a contact and send a text to that contact thru the app. The app only works with some contacts and fails on others. More precisely: for the ...
0
votes
8answers
46 views

Android - How can I split the date format to year, month and day from String to int?

I would like to ask if I have a date with dd/mm/yyyy in String format, I want to split it to int year, int month and int day, how can to that. Other than that, the String date (dd/mm/yyyy) is stored ...
-1
votes
0answers
25 views

Populating Sqlite Database records on TextView Fails to process Html Characters

Android Sqlite displaying data on a TextView fails to print characters like \n \t etc it is advised to use html.fromhtml() but that must involve the string resouce , mine is just data from ...
0
votes
1answer
66 views

Where to call restartLoader in ListView Fragment using ActionBarSherlock and SQLiteCursorLoader

I'm doing a ListView in a fragment using loaders, ActionBarSherlock and SqliteCursorLoader. The ListView basically shows a list of dates and GPS coordinates. I can load the inital ListView just fine. ...
1
vote
0answers
69 views

SQLiteOpenHelper null pointer exception

I am implementing a cache for my android app and using SQLite Database to store server responses. The class for handling the DB is defined below. Also it has a SQLiteOpenHelper class which is used as ...
2
votes
1answer
84 views

Upgrading the SQLite Database of a Production Android App, is this Correct?

As the title says, I have a production Android app with about 1000 installs. I had to make a DB change in SQLite, up to this point the version of the SQLite DB has been set to version "1". Hopefully ...
2
votes
1answer
880 views

Android SQLite query with integer parameter

The documentation for SQLiteDatabase.query says that the selectionArgs will be bound as strings. What is the recommended way to perform a query with an integer parameter? Is it this: int value = ...
0
votes
1answer
560 views

Moving SQLite database from android phone to emulator

I have my app with some data. I'd like to test my sqlite database (from my phone) in Android emulator. I'm 99% sure It was working some time ago using the same method. I know where are my database ...
4
votes
3answers
6k views

Access sqlite database on android device

I'm trying to access the sqlite database file on the device. I mean, I've launched the app on the device via adb. And now I wanto to download this file as I did before on emulator via DDMS. But when I ...
35
votes
6answers
6k views

Closing the database in a ContentProvider

This week I've been learning all about ContentProvider and using the SQLiteOpenHelper class to manage the creation and upgrading of the database inside of a provider. Specifically, I've been reading ...
11
votes
3answers
6k views

Displaying image from the sqlite database using cursor in android

i want to display image in imageview from sqlite database using cursor. i used below code to retrieve image but i am not able to display image in imageview. Cursor c=this.db.query(TABLE_NAME, new ...
16
votes
4answers
13k views

Bulk Insertion on Android device

I want to bulk insert about 700 records into the Android database on my next upgrade. What's the most efficient way to do this? From various posts, I know that if I use Insert statements, I should ...
7
votes
1answer
2k views

What's the closest equivalent to a Session / Cookie variable in Android?

For example, I want my users to be able to click a button "Get new quote" which will start a new row in the the database for data to start being stored, but I'm unsure of how to store activity ...
4
votes
6answers
24k views

How do I create a database in android? [closed]

I need a step by step procedure for creating a database in Android.
32
votes
2answers
20k views

Sqlite table constraint - unique on multiple columns

I can find syntax "charts" on this on the sqlite website, but no examples and my code is crashing. I have other tables with unique constraints on a single column, but I want to add a constraint to ...

1 2 3 4 5 165