1
vote
1answer
21 views

Couldn't read row 384, col 47 from CursorWindow. Make sure the Cursor is initialized correctly

I'm reading some data from Android calendar and sometimes I got strange crash reports from users like: java.lang.IllegalStateException: Couldn't read row 384, col 47 from CursorWindow. Make sure the ...
-1
votes
4answers
22 views

Couldn't read row 1, col -1 from CursorWindow

I have the following error message in my application: 05-13 09:05:53.218: E/AndroidRuntime(5339): FATAL EXCEPTION: main 05-13 09:05:53.218: E/AndroidRuntime(5339): java.lang.RuntimeException: Unable ...
0
votes
2answers
55 views

SQLite returning an empty cursor even if the data exist

I am using sqlite in my android application to store data. Each time when i start the application i get some data from server and store it in client.The existing data updates and new data inserts into ...
0
votes
2answers
42 views

Couldn't read row 0, col 9 from CursorWindow

I'm getting the error Couldn't read row 0, col 9 from CursorWindow. Make sure the Cursor is initialized correctly before accessing data from it. Two other people are able to run the code without ...
0
votes
0answers
27 views

Android: Managing Cursor in a Thread

final Cursor c = dbManager.fetchAnsweredNotifications(whereClause, selectionArgs); wsConnection = new WSConnection(); Log.i("checkUnsentAnswers","numero righe trovate: ...
1
vote
0answers
38 views

Which is the best solution between ArrayAdapter and SimpleCursorAdapter? [closed]

In terms of performance is preferable to use SimpleCursorAdapter or ArrayAdapter in which I have passed an array containing values ​​resulting from a cursor?
1
vote
1answer
55 views

how to get the item in listview when i use onItemClickListener

i want to get the item from listview. but when i try to click listview i got error. can some body help me? this my class activity. data = new dbHelper(this); listKeluar = ...
0
votes
1answer
54 views

Caused by: java.lang.IllegalStateException: get field slot from row 0 col -1 failed

i want to select value from my database but i got error Caused by: java.lang.IllegalStateException: get field slot from row 0 col -1 failed i don't know where is the wrong in my code.. this is my ...
0
votes
3answers
26 views

Caused by: android.database.CursorIndexOutOfBoundsException: Index -1 requested, with a size of 1

i want to select value from my database but i got error Caused by: android.database.CursorIndexOutOfBoundsException: Index -1 requested, with a size of 1 i don't know where is the wrong in my ...
0
votes
0answers
13 views

how to send cursor and read in ather place

I do this method to retrieve a cursor public Cursor getPositionWithID(int id) { try { Cursor c; // String sql="SELECT * FROM table_position WHERE _id=?"; ...
0
votes
2answers
29 views

Not closing cursor - only pre-Android 4.0?

I am testing an app on Android 4.0+ and it works great. On 2.2/2.3, I keep having issues with SQLlite cursors. The odd part if that this happens like 90% of the time when app starts. I can't ...
0
votes
3answers
34 views

Parametrized query android sqlite not working?

I have two queries, one with a ? which I substitute via the selection args and the other where the entire query has been prepared as a string. The query with ? does not seem to return any result and ...
1
vote
2answers
53 views

Trying to requery an already closed cursor

I'm doing simply queries like: Cursor c = databaseHelper.getReadableDatabase().rawQuery("select " + MyTable.TABLE_FIELD.getColumnName() + " from " + MyTable.TABLE_NAME, null); after that I extract ...
0
votes
1answer
86 views

Android How To Get The Return Value String From SQLite Cursor Query And Display It In Edittext?

When I run the SQLite Cursor Query it fails to display the result string in the edittext. It fails with the Logcat message: java.lang.RuntimeException: Unable to start activity ...
2
votes
1answer
163 views

Android SQLite get all data from cursor fast

I am dealing with a performance problem in one of my apps. Maybe one of you guys can help me out?! I have a database with somewhat around 10k entries. I query for elements using the default query ...
-2
votes
1answer
57 views

Android: Reading from cursor or database [closed]

Sometimes reading a cursor from Database in android can be tricky, and checking if the cursor is actually empty or null is also dificult sometimes. How should I handle this?
0
votes
1answer
22 views

How do I move the groupCursor parameters to the childCursor?

I not really sure if that is the correct title. However, what I need to do is add some sort of parameter to my getChildrenCursor so that it only shows the children for that particular group and not ...
0
votes
0answers
55 views

Android Sqlite Cursor failed to get the next value from index [closed]

I'm creating a quiz game where the questions are displayed (TEXTVIEW) randomly and the user have to type in his answer using an EDITTEXT. My problem is whenever I try to move to the (2nd)next ...
0
votes
0answers
19 views

AlertDialog when cursor DB table is empty

Can someone can help me this. I want to get an AlertDialog when an activity start if the bd table for that activity is empty This is my BD class public class baseDados { // Para as variaveis da BD ...
0
votes
2answers
48 views

If cursor is empty / null

If cursor is empty/null , I want to add a row . But the code I use doesnt work : (error: index -1 requested with a size of 1) final String query = "SELECT category.CategoryID, " + ...
0
votes
1answer
58 views

Wrong values returned from cursor

It look like complete paranormal activity to me. I got this little function converting database data into objects: public List<BudgetSummary> getMonnthlyBalance() { ...
0
votes
1answer
45 views

Does cursor.getString() coerce an int into a string?

The docs say: The result and whether this method throws an exception when the column value is null or the column type is not a string type is implementation-defined. Which implementation are ...
-1
votes
3answers
98 views

Cursor Index Out of Bounds Exception: Index -1 requested with size 0

I am just trying to search for the data in multiple table.If the where condition data is not present in first table(tab1) then it has to search in the second table(tab2) but I am getting the exception ...
1
vote
1answer
55 views

Freezing SQLite-DB in Android App

I've run over some difficulties with creating/reading a SQLite-DB in my App. Having this tutorial here beside me I wanted to implement a Database into my (yeah, laugh at me) Minesweeper-App to store ...
0
votes
3answers
126 views

SimpleCursorAdapter does not load external sqlite database: “_id” error

The error says: column _id does not exists but the column is in the database (set as primary key) and this one is located in the external SD folder. I'm trying to return the values contained in the ...
0
votes
1answer
84 views

Android Contact cursor take too much time to iterate

I want to fetch all contacts from Phone Contact app and insert into local sqlite db. but problem is that the android contact cursor take time to iterate... CODE: private Cursor getContacts() { ...
1
vote
1answer
43 views

Sqlite NullPointerException on either first or last row

I've searched high and low through null pointer and query posts, but still can't resolve this. I am inflating a ListView with a custom adapter, then registering it with an ItemLongClickListener which ...
0
votes
2answers
124 views

Android SQLite Query Where and Where

I need to return the ID value from the database where dan == table_column_one and where vrijeme == table_column_two. I don't know how to do this. public static int returnID(String dan, int vrijeme){ ...
0
votes
2answers
105 views

Sqlite verify if value of column exists

i'm wondering if this method is right to verify if the value of _username already exists in the column "username" public boolean verification(String _username) throws SQLException{ Cursor c = ...
0
votes
0answers
57 views

Android Database Cursor Returns Wrong Results

I'm having an alarm clock application and I'm trying to make a method which deletes all already set alarms and deletes all the records from the database too. With this method I retrieve my ...
0
votes
1answer
58 views

accessing inbox, given a particular date

Hello guys i want to accesss certain sms according to the specified month, like for example, current month and last month. etc. i have written this query, which is not working , little help ...
0
votes
0answers
80 views

get cursor data into string array

Using eclipse and "Android Development for Dummies", I have the "reminder" example able to display items from the DB with SimpleCursorAdapter, but getting them into a string array to manipulate then ...
0
votes
1answer
64 views

SQLite: ResultSet cursor already at the end after stmt.executeQuery()

I'm reading from an SQLite Database into a ResultSet with the command allCustomers = stmt.executeQuery("SELECT * FROM customers"); The table customers has 3 columns: customerID, firstname, lastname ...
0
votes
2answers
251 views

reading data from sqlite database and adding to list view through hashmap

i want to read the 'empname' and 'place' from sqlite database and list into a listview i tried the given code, but the code shows error like 'unreachable code' can any one help me to find out the ...
3
votes
4answers
73 views

How to determine if a column is boolean from cursor object?

I've result of a select query in a cursor object. I've some Boolean columns in the table. The value for Boolean type in SQLite is 0 or 1 depending on if they are false or true respectively. There are ...
1
vote
2answers
151 views

How to get single value from List<E> in android

I want to get a value of single column returned in the form of ArrayList<> from SQLite for retrieving data my code is : public List<ContentDataObject> findAll() { ...
3
votes
3answers
371 views

How get a specific row where value is updated in android

I am using SQLite database. There is continuous update coming in to table, each time 1 or 2 row values get updated. For example: Now there are 20 rows in TABLE1 some of the rows values gets updated.. ...
0
votes
1answer
63 views

sqlite: query to add (subtract) cells from adjacent rows and put result in new column

I am examining a .sqlite file in FireFox's SQLite Manager and need to see if any data was not collected. An example is worth a thousand words: ReadDate ReadValue 1361900350183.00 137 ...
0
votes
0answers
47 views

SQLite : verification if value exist

Basicly, i want to verify if a usename is not already written in the Database. Since i'm pretty new, i don't know how to do and tried that, but i'm getting error with this codes. I seriously don't ...
0
votes
2answers
54 views

SQLite Cursor crashes

i have a problem with my SQLite class. In fact, i was learning how to setting up (update and read) a database on android and I successfully wrote on the database, but when i try to read the ...
0
votes
1answer
113 views

Android cursor from SQLite crashes on method call

Good evening! I'm trying to read from a SQLite database i just created in my android project. I create the database and enter data without any problems (I think). I query the db to get the data ...
1
vote
1answer
35 views

How do I handle my database within one class and securely close it in the end?

I have a class that does all the database access. It holds a reference to an SQLiteDatabase. The 30 or so functions look like this: public boolean updateSomething(long a, int b, long c) { ...
0
votes
1answer
243 views

What is the preference of SQLiteQueryBuilder?

SQLiteQueryBuilder has method public Cursor query (SQLiteDatabase db, String[] projectionIn, String selection, String[] selectionArgs, String groupBy, String having, String sortOrder) also ...
0
votes
0answers
100 views

cursor.getCount() returning wrong count using rawQuery

I have used rawQuery to fetch records from DB table. I have checked the query from log and it is executing perfectly in SQLite. But the cursor.getCount is returning wrong row count and cursor ...
0
votes
2answers
67 views

Finalizing cursor on null that that has not been deactivated or closed

In my application, I tried using the following codes to validate the user email address exists in database or not. If the user email address does not exist it will insert the user info into database. ...
0
votes
0answers
55 views

how can i add value a perticular coloum from database to text view

I Am new in android programming and i need help for my project... i want to add values of particular database table column into textview.. i mean if i search some string ABC in coloum name then ...
-1
votes
1answer
588 views

getContentResolver().query android where clause

My query is regarding the creation of the function parameters for getting data from the database. I want the cursor to returns only specific rows instead of complete recordset. c= ...
0
votes
0answers
49 views

Populate Spinner from DB without managingCursor

ManagingCursor is depreciated. So I am trying to fill my spinner without the managingCursor. That is how it is working now with the managingCursor: public void LoadVorlagenSpinner(){ Cursor ...
1
vote
1answer
503 views

Cursor is not initialized correctly

I am getting this error when trying to retrieve all the entries of a table on the local database: java.lang.RuntimeException: Unable to start activity ...
0
votes
2answers
102 views

why am i getting Null Pointer Exception?

I am fetching data from a database using this code : Cursor cursor = db.query(News_Table, null, null, null, null, null, null); if (cursor != null) { cursor.moveToFirst(); } allNews = new ...

1 2 3 4 5 8