android-cursor is an interface which provides random read-write access to the result set returned by a database query.
0
votes
1answer
20 views
Unsupported operation exception when trying to getBlob from cursor
Here is my SimpleCursorAdapter extension class which I use trying to display information about contacts in a ListView:
private class CustomContactsAdapter extends SimpleCursorAdapter {
...
0
votes
1answer
16 views
Combine two cursors (merge?), by keeping all distinct IDs from both cursors
Say I have two cursors(called A and B). A and B has some columns identical, but the only true relation between the two is a single column, call it specialID. Cursor A is filled via a ContentProvider, ...
0
votes
4answers
47 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 ...
8
votes
2answers
127 views
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 ...
-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
0answers
22 views
Efficient use of ListView on changeCursor and avoid data rebinding?
Below is my code for my bindView() for my CursorAdapter.
The whole middle section there is me setting an identifier on one of the images, that will prevent my ImageLoader (a lazy image loader) from ...
0
votes
1answer
36 views
SQLiteDatabase NullPointerException while querying the DB with a SELECT statement
i'm trying to query my database to check if a matching field value exists or not.
Pretty much using a SELECT sql statement.
I'm getting an NullPointerException error when i try to query the database ...
0
votes
1answer
25 views
Couldn't read row from CursorWindow
I'm doing an Android application in which I want to implement a registration feature where a new user is added.
At first I have created an activity called Registration, and when the button is pressed ...
1
vote
2answers
34 views
How check if one column value from the Cursor is empty?
I am trying to insert value into my DB depends on the status of the values.
If COLUMN_FIELDS_PARAMETER is empty, insert the data.
If COLUMN_FIELDS_PARAMETER is not empty, update the data.
I use ...
1
vote
2answers
32 views
How to fill a Spinner with a Cursor after API level 11?
I have found lots of answers on SO and other websites about how to fill a Spinner with a Cursor, but all of them use the deprectated SimpleCursorAdapter(Context, int, String[], int[]) constructor to ...
0
votes
1answer
47 views
Cursor for an Image always returns null
I'm storing a picture from my Camera like this:
String newName = new BigInteger(130, new SecureRandom())
.toString(24);
File mydir = new ...
0
votes
1answer
34 views
c.getString couldnt get field
c.getString(i+2) doesnt work; am I missed something with these codes ?
Error : java.lang.IllegalStateException: get field slot from row 0 col 13 failed
...
static String [] lesson_value;
String ...
2
votes
3answers
40 views
using cursor to get contacts throw sqlite exception
I get the following sqlite exception while querying for contact phone:
05-05 04:25:47.276: E/AndroidRuntime(7369): android.database.sqlite.SQLiteException: near "s": syntax error: , while compiling:
...
0
votes
0answers
33 views
ContactsContract.Contacts.PHOTO_ID to ImageView using SimpleCursorAdapter
I'm trying to query the ContentProvider and get a contact's photo and show it in a gridView
I query the ContactsContract.Contacts.PHOTO_ID table.
I put that into the a String[] and I use a ...
0
votes
1answer
71 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. ...
0
votes
0answers
81 views
Fetching multiple data from database by sending spinner selected item to database
i have one spinner name bed whose values are 1,2,3,4 which are fetched by another class file and that selected item is send to database know database returns the data which is similar to selected ...
0
votes
0answers
37 views
How to get type of a column from a cursor ?- Android
anyone know how to get the type of a column from a cursor in Android (SQLite), my API target is 17 and I read about the cursor.getType() method only work before the API 11.
I need it to use a ...
0
votes
0answers
10 views
Strange behavior cursor in Android
I have a fragment to select a Playlist. When one playlist is selected I update a cursor in a Service. This Service and cursor are responsible for control a MediaPlayer.
...
0
votes
1answer
44 views
Android development with sqlite: query result shouldn't be empty
I have a rather big query that is returning data when executed outside android while returning nothing when executed within android.
I split the query in several pieces and determined that the union ...
0
votes
1answer
25 views
android phone number returned as data1
I am trying to use the following code to read a phone number. But it ever returns the number as data1. How do I fix this to get the actual number?
minorCursor = ...
0
votes
0answers
39 views
Cursor returns zero record when accessing log file of call of android but works fine with emulator
Here I am working with CallLogs.Call and trying to fetch call history from log files using contentResolver.query() and when I am executing it on emulator it displays the records but when running on ...
0
votes
1answer
32 views
Android Databases-Cursor Returns Error
I am entirely new to Android and java. Have worked in vb.net before. I am trying to create an Android version of a vb.net app. The database functions in Android are killing me. Here is a short ...
1
vote
2answers
54 views
Receive an ArrayIndexOutOfBoundsException when trying to access String array
I have a model, lineModel that I am using to populate an array items for my gridAdapter. My model works fine when I populate the entries manually. For example:
lineModel[] items = {
...
0
votes
1answer
48 views
CursorLoader with Cursor accsss inside a loop
I'm building a ListView, and each item in the ListView has data from several different Cursors. I've got an object which holds all the data for each item in the ListView. I'm using an ArrayList of ...
0
votes
1answer
45 views
using sqlite3 fts3 snippet function in android dictionary app
I have built an android dictionary app using an sqlite3 fts3 virtual table. I would like to be able to execute a search using the fts3 snippet function, as in:
SELECT snippet(my_dictionary) FROM ...
2
votes
1answer
75 views
How to create Cursor data without getting data from the DataBase in Android application?
In my Android application, I am using Sqlite DataBase to store the data from the server. I am using ContentProvider and ContentResolver to access the data from the DataBase and using CursorAdapter to ...
1
vote
0answers
50 views
ListView(large data set-cursor) With SectionIndexer working not properly
Nearly I have 33000 rows with 5 columns in cursor.
While loading this cursor with custom cursor adapter showing the message as:
**E/CursorWindow(32613): need to grow: mSize = 1048576, size = 11, ...
0
votes
2answers
42 views
Select from db but CursorIndexOutOfBoundsException Index 2 requested, with a size of 2
I have this function that I use to find rows that contains substrings in their name. But I get error, although using log.v I can see the results are returned ok. Can anybody tell me what is wrong ...
0
votes
2answers
67 views
How can outofboundexception will be solved?
I am accessing phonebook through one query and getting last call details from other query. The problem is that when i am getting date from my manged cursor i get outofbound exception and my ...
0
votes
0answers
90 views
Android - Convert a Cursor / ArrayList to a Cursor
Scope
I want to implement custom search suggestion in my Android application. For this, I have to write my own ContentProvider. Now, the ContentProvider has this method query that I need to override. ...
0
votes
1answer
91 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() {
...
0
votes
1answer
299 views
Gridview using custom adapter not displaying all results
firstly a big thanks to all the experts that answer questions and provide insight into challenges. Your work is appreciated.
Now, i'm a newbie and just started using java and Android....but i'm ...
1
vote
1answer
87 views
Pre-fill the CheckedTextViews in a ListView
Here is my first question on StackOverFlow, I usually always find an answer by myself but I am really stuck on a weird problem that I will explain here:
I implemented a ListView in a fragment ...
1
vote
1answer
116 views
Adding events to android calendar failing
I am trying to add events to a user's calendar programatically. I have followed countless guides here on StackOverflow and elsewhere, but none of them will make that damned event show up in my ...
0
votes
1answer
38 views
Why doesn't the notification URI work for a MergeCursor?
Suppose you have a CONTENT_URI inside your ContentProvider in which you want to do some complex stuff and return a combination of Cursors (MergeCursor) instead of a simple, single Cursor.
It so ...
0
votes
0answers
23 views
How to properly perform a managed query?
I'm developing against API 11 so I don't think it's necessary to use LoadCursor.
I have three classes: MainActivity extends Activity, Columns extends PagerAdapter, and GetMp3Tag
MainActivity
...
1
vote
0answers
72 views
How can I get cursor update notifications without a CursorAdapter?
I'm writing a Fragment that uses a loader to get a Cursor containing data about locations of various things on a map. I've inherited code to sort these locations by distance from the device, or from ...
0
votes
1answer
101 views
How to get Call Log by date in android?
I am trying to get Call Logs by date. But get stuck with the format of the date to be passed to the cursor to get the values.
Call Log Cursor
Calendar calendar = Calendar.getInstance();
...
0
votes
1answer
199 views
Convert JSON to Cursor
I have some data in JSON format that I'd like to convert into a cursor so it can be returned by a content provider. What's the best way to go about this?
I considered using a MatrixCursor but my ...
0
votes
1answer
46 views
Assigning values of Two DB Columns to a Cursor?
I have a query that returns 2 set of Columns from DB and I want to how can I assign these columns to a Cursor and later use them for further processing.
Thats my Query:
public ...
1
vote
0answers
142 views
Is CursorAdapter more efficient that ListAdapter/ArrayAdapter?
I'm using Mono For Android to create my Android app.
My solution is structured as such:
Core -> A .Net Class Library that contains my business logic. Doesn't have Android code. Needs to be ...
1
vote
1answer
19 views
startManagedCursor (c) versus c.close()?
Wondering how startManagedCursor() acts on / versus db.close() and / or cursor.close() Did read docs, but I'm still fuzzy on it %-) ... and, understood that startManagedCursor() is deprecated api >= ...
0
votes
0answers
140 views
SQLite Android - How can I get data column by column from Database
How can i get data from database column by column for fill up my diffrents Textview. Textview1 = ID ; Textview2= NOM salon ; Textview2= Date etc...
How can i get data from database column by column ...
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, ...
1
vote
2answers
51 views
Updating the cursor manually by adding an item at a given index
I want to insert an item (and even null) into a cursor at a particular index.
For example, I need to display 5 rows of information, but my query will get me a cursor with only 3 records, thus I need ...
0
votes
1answer
39 views
Why am I getting a -1 in getColumnIndex method
private static final String DATABASE_CREATE = "CREATE TABLE "
+ DATABASE_TABLE_USERS + "(" + KEY_ROW_ID +
" INTEGER PRIMARY KEY AUTOINCREMENT," + KEY_NAME
+ " TEXT NOT ...
0
votes
0answers
44 views
Get int array from Android cursor
I'm using a library which adds an int array to a cursor as shown below:
int[] coordinates = { coordinatePair.latitude, coordinatePair.longitude };
row[columnIndex] = coordinates;
// Store the row
...
0
votes
1answer
160 views
How to remove duplicate rows in a Cursor (Android SDK)?
Currently, I have made 3 queries (resulting in 3 cursors), and then I merged the cursors using the MergeCursor class. However, this has caused duplicates in the cursor, and I can't seem to find a way ...
0
votes
4answers
86 views
cursor index out of bounds “index 0 requested: with size 0”
I am getting cursor index out of bounds "index 0 requested: with size 0" error when I search for sms in inbox.I have written the code below:
@Override
public void onClick(View arg0) {
...
0
votes
2answers
59 views
Not able to get the data from the cursor?
public Cursor getsomething()
{
this.open();
Cursor c= database.query(DatabaseHandler.Table_Name,magicdata,null, null, null,null,null);
this.close();
return c;
}
I am using this ...


