Tagged Questions
0
votes
1answer
48 views
Cursor does not get values from database
Im trying to get some values from my database using Cursor.
My problem is that when i try to get the values out of my DB my Cursor out of bounds.
Im sure that the values that i want exists in the DB ...
0
votes
3answers
88 views
Get all unique values from SQLite column as string array
I try to get all unique values from database coulmn using SELECT DISTINCT sql command.
But i get exception when my activity is loading, i have this error code in logcat:
05-05 09:08:32.637: ...
0
votes
0answers
80 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 ...
1
vote
2answers
158 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() {
...
0
votes
1answer
206 views
Android ListView: Application did not close the cursor or database object
My listview activity will not display a particular row(sName) in my List view UI. I am able to add item to me sqlite DB but after trying to get my listview to refresh when my DB is updated, my list ...
0
votes
1answer
261 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
2answers
48 views
Android effectively cursor usage?
In my Android activity, I use rawquery many times. And I use a static cursor for that rawquery. My question is: should i close my cursor before execute another rawquery or just leave it open til all ...
0
votes
1answer
164 views
DialogFragment OnClickListener strange Cursor behavior
I am using the code below in a class extending DialogFragment.
Before adding the buttons I move a cursor to a certain position (see setDataFromCursor()) The strange thing is, that the position has ...
0
votes
2answers
73 views
Checking whether cursor object is closed or not
I am new to android.Is there any statements are available for checking whether cursor object and database is closed or not.
I have two activities A & B.when i perform certain actions in A,it ...
1
vote
2answers
759 views
Android java.lang.IllegalStateException: Couldn't init cursor window
I have this error on google play crash report and don't know how fix it :
java.lang.IllegalStateException: Couldn't init cursor window
at android.database.CursorWindow.native_init(Native Method)
at ...
0
votes
3answers
168 views
sqlite + listview + new Activity: close() was never explicitly called on database?
I have made an app that has 3 activities.
In the fisrt activity(Import) i just import some values to a sqlite database.
This is my DatabaseHelper class:
public class DatabaseHelper_bp extends ...
0
votes
1answer
26 views
DB for credentials
How can I create a sqlite db that only has one row to store a username and password value. anytime an attempt to add additional data is made, the application to not allow.
public void ...
0
votes
1answer
135 views
Android SQLite cursor looping twice
I have a problem with the android cursor looping twice, even though I know there is only one value returned in the cursor.getCount().
I'm using the following in the DBAdapter:
public Cursor ...
8
votes
1answer
331 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 ...
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 ...
