0
votes
2answers
35 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: ...
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
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
3answers
45 views

String from database gives nullPointerException using isEmpty

I have method that returns string from my DB. My problem is when im trying to use isEmpty() or charAt(0) i get nullPointerException. here is the log cat: 05-09 15:56:47.002: E/AndroidRuntime(6914): ...
0
votes
2answers
53 views

How to read from a SQLite Database and pass the value to a textview in another Class

I'm fairly new to Android. I'm making an application that shows a whole lot amount of different stings on previous and forward button clicks. I also have a database stored in the assets folder.. now ...
0
votes
2answers
53 views

Why can't I add these default values in my SQLite database in Android?

So I'm building an alarm application. I want to display a few default alarms when the application is first installed. For example, 3 alarms at 7am, 8am and 9am. Below is my code. getAllAlarms() is ...
0
votes
1answer
65 views

Cannot perform operation because no current transaction when inserting into database

In my Android application I have to insert data into several SQLite tables from different threads (one thread for insertion into one table and there are 5 tables). There are a lot of data so I use ...
3
votes
1answer
192 views

Android error: Cannot perform this operation because the connection pool has been closed

I have searched StackOverflow and the web for an answer to this question, but I could not find an answer. When I run my application on Gingerbread, it runs fine. But when I run it on 4.2.2, I get this ...
0
votes
2answers
75 views

How can I simultaneously (from different threads) insert data into different tables in one Android SQLite database?

In my Android application I have SQLite database with 4 tables (laboratories,doctors,income_messages, outcome_messages). Information for this tables is retrieved from the server by using ...
0
votes
1answer
53 views

android sqlite query search with “LIKE” error

I have been stuck on this one for the past couple of hours (sadly). I am building an application with SQLite where the application can do all the flexible SQL commands. I am currently stuck on how ...
0
votes
0answers
50 views

what to change in database helper to make external database run on real device? [closed]

I have android app with external database in (assets) and i know my DATABASE HELPER class needs some changes to run (external database) on the REAL DEVICE please check this code and let me know what ...
0
votes
0answers
91 views

Android java how to do CRUD operations using a datagrid like view [closed]

Is there any control to do inline CRUD operations using a view similar to the DataGridView used in dot net. All the examples I've seen just show how to display the data using TextViews. I need to edit ...
0
votes
1answer
76 views

Escape special character # in table condition clause

Creating the table in SQLite with column names which contains special character #. Don't know how to escape this so that SQLite recognize it. I found that the escape code for # is %23. So I tried to ...
0
votes
0answers
23 views

Android Object lifetime using SQLite Object

My MainActivity extends TabActivity. I have two tabs, 'Location' and 'Name'. Both tabs have separate Activitys and layouts. 'Location' is pre-populated and the 'Names' are added by the user. I use the ...
1
vote
1answer
157 views

Android SQLite CustomAdapter and Custom ListView

I am a very new android developer and I have been trying to learn it by creating simple apps. Right now I'm stuck on trying to create a custom ListView for my app. My data's are being stored in ...
0
votes
1answer
58 views

SQLitedatabase crash after upgrade

I added 3 new columns to my Database from version 1 so I changed it to version 2 but now when I use an activity that uses my database my app crashes and shows this in the logcat. 04-02 ...
0
votes
0answers
86 views

How to update sql database using sqlite database browser?

When I make changes to the database in the browser how can I upgrade the database rather than uninstalling and re-installing? I already know that the database is on the phone and thats the reason that ...
4
votes
4answers
258 views

SQLiteDatabase: Insert only if the value does not exist (not via raw SQL command)

I know there's an SQL command that goes like this: IF NOT EXISTS, but since Android's SQLiteDatabase class has some fine methods, I was wondering if it's possible to insert a value if it doesn't exist ...
-1
votes
3answers
95 views

create login page once for first use after installing android application [closed]

I apologize if my questions seem to be repetitive. but, i'm still could not find any answer or tutorial that can help me in this. i want to develop an application that needs to log in once after the ...
1
vote
3answers
73 views

How to make search work in Android

I have the following code which works fine.. I wan to add a search functionality... Can you please tell me what should I do and where MyDatabase.java package com.example.test4; import ...
0
votes
2answers
117 views

Can't retrieve data from android sqlite database after asynchronous insertion

In the start activity i insert data into the database in AsyncTask and when it completes I start new Activity and select that data to show it in list view, but selected cursor is empty. Here is a code ...
0
votes
1answer
140 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) { ...
3
votes
3answers
115 views

I think I have come up with the worst way to compare two dates; is it possible to make it better?

My app accepts a date form the user through a datepicker fragment and stores it in a database with the day, month and year as individual columns of type String. Now, I'm creating a function which ...
1
vote
3answers
52 views

How can I clear my database when the application is closed?

I need to clear application's database (drop all tables) after closing the application. I decided to implement this in some Activity's onDestroy(). As far as I know all onDestroy() methods are called ...
0
votes
1answer
86 views

How to hide two wrong answers in a quiz?

Like in "Who wants to be a millionaire". When a user press a 50/50 help button I want two wrong answers to hide, therefor to setText to "" for two buttons, BUT not "the answer" one. But I don't know ...
0
votes
2answers
37 views

Adding data from a SQLite column

I'm, trying to add a credit score from multiple records of an SQLite table. Each record has a column called credit score, I want to add them all together but I'm having trouble. Here is the code: ...
0
votes
2answers
78 views

How to write score to SQLite db?

i'm a sqlite newbie. What I'm trying to do...I have a game and after the game ends it stores time result in a double variable named elapsedSeconds. I want to place that result in a db, and than in my ...
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(); ...
-1
votes
2answers
79 views

How to run specific method from another activity with an intent

I have a radio button activity with 5 choices for the game. It's a quiz game, so the user can choose to play until he or she makes one error, two errors, tree, four and five errors. My question ...
2
votes
3answers
119 views

How to count number of asked questions?

I have this activity with question and 4 possible answers, and after each user answer it reloads itself with another question. I placed a textView in the bottom right corner with start value of 1/10 ...
2
votes
1answer
86 views

Are there other ways to fetch data from the SQLite database except using Cursor?

I'm just interesting: can I use something else for retrieving data from the database instead of using Cursor like this: Cursor fetch_ = database_.rawQuery("SELECT " + USER_ID + " FROM " + TABLE_NAME, ...
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
3answers
79 views

How to check for the correct answer

After importing db to assets, i succesfully read from it, and assign random answers to four of my buttons in my activity: try{ mDbHelper.open(); //open db Cursor c = ...
1
vote
1answer
101 views

How to randomly set text to four buttons from SQLite db?

I have a SQLite table imported in assets, trial one with 10 rows and 6 columns (_ID, QUESTION, ANSWER, OPTION1, OPTION2 AND OPTION3). I managed to read random row from database and assign that data, ...
0
votes
1answer
232 views

Android SQLite created database but table can't be found

So I'm trying to fetch data from one of my database tables, could you please check this out for me and see if you can spot the error? SQLiteDatabase db = SQLiteDatabase.openDatabase(DB_PATH, null, ...
0
votes
1answer
112 views

Column does not exist : Illegal Argument Exception in Android app

In the below activity-The user has to enter the defined fields. Once the entry has been made, user can edit the changes and save.However in my app the entries are successfully getting inserted in to ...
1
vote
1answer
79 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
2answers
87 views

Dynamic cast from custom object to sqlite line

I have a movie table which has many columns and a class that represents the table with the same columns/fields types in the same order (one int for id and all other are strings) I have this code that ...
0
votes
1answer
220 views

Android , SQLite… the primary key is inserted as null

I'm a beginner with android, and trying to create a database. with one table and three functions add , delete, update and retrive. when i insert an item to the data base the primary key will be given ...
0
votes
3answers
119 views

Android SQLite query stops AsyncTask

I've debugged code and seems like sqlite query stops AsynkTask thread: Log.d(LOG_TAG, "Getting params"); Cursor c = null; try { String[] queryParams = new ...
0
votes
2answers
415 views

Android: sqlite returned: error code = 1, msg = no such table

I am getting data from the API and then inserting that data into the SQLite database. But when I am inserting that data there is some issue. I am unable to find out that issue. I am getting the ...
0
votes
1answer
92 views

Updating Cursor on SQLite database change

This is my scenario: Activity 1, Is where I have a list with items. Activity 1 contains an object of Class A, which deals with getting and returning a cursor of data retrieved by an SQLite database, ...
0
votes
1answer
90 views

Android sqlite db.query leads to CursorIndexOutOfBoundsException

I am trying to select certain rows from my database, but since I kept getting index out of bound I decided to remove the WHERE part for now and just get all of the data. I have used the android ...
-1
votes
1answer
219 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 ...
2
votes
1answer
71 views

Making a copy of Android database

I've been trying to create a copy of the applications database and save it onto the root of the phone, but no luck. My logs go: STEP ONE STEP DEAD Apparently if (sd.canWrite()) is the first ...
2
votes
1answer
43 views

Android SQLite Query with IN()

I have the following Models categories(id, name, is_active) places(id, name, category_id, .....) Based on users preferences the categories will be 0 or 1. Based on this preference i want to query ...
-2
votes
3answers
61 views

How to update, delete sql values in sqlitedb android

I can create the db and access the values but the issue I am running into is updating the values associated with the identifier. Essentially I have id | value |1| 1 |2| 2 |3| ...
4
votes
2answers
195 views

Android SQLite Query with foreign key using stORM or an alternative

I have the following models categories(id, name) places(id, name, category_id) i have a list view which displays Content based on the categories the user wants to see. Data for Categories 1, ...
0
votes
3answers
212 views

Android - SQLite - SELECT BETWEEN Date1 AND Date2

Mac OS-X Android Eclipse with ADT SQLite I'm new to creating Android Apps and Ive researched this heavily but I'm getting nowhere. I need to query my SQLite database to return all the rows ...
0
votes
0answers
97 views

Function call when Android custom cursor adapter element clicked

I want to make ListActivity with custom SimpleCursorAdapter that will have clickabel elements (button/checkbox and rest). The ListActivity extends SherlockListActivity. I found quite a lot tutorials ...

1 2