Tagged Questions
-1
votes
1answer
31 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 ...
1
vote
2answers
32 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 ...
0
votes
2answers
33 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
30 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
55 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
51 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
2answers
36 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 ...
1
vote
1answer
18 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 >= ...
2
votes
1answer
82 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
2answers
58 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 ...
2
votes
1answer
123 views
How does a cursor used by a RemoteViewService get deactivated
I get ACRA exception reports from some users that the cursor which supplies data to my appwidget (RemoteViewService) is deactivated/closed. It never happens to me in person, but it happens enough ...
0
votes
1answer
167 views
Retrieve data from sqlite android
I'm using the following code to show data from sqlite in listView
public class AndroidSQLite extends Activity {
ListView listContent;
private SQLiteAdapter mySQLiteAdapter;
Button addZekr;
EditText ...
0
votes
1answer
71 views
I want to get last inserted record id in Android
I am new to android.
I was just working with sqlite database.
Now i want to know how to get Id right after of last inserted record in database?
I search this topic here but i could not find a perfect ...
0
votes
1answer
619 views
Populate GridView in Android with SQLite database entries
I want to populate my Gridview with entries from my SQLite database but it does not work.
In my main activity I set a adapter to the gridview:
public void onCreate(Bundle savedInstanceState) {
...
0
votes
3answers
82 views
How to multiply a sqlite db value with unit on load before populate the grid
I have a database with these columns
|Name|Quantity|Price|Type|Eta|Language|
|Farmakon|200.1mg|35€|F|2|EN|
|Botron|13g|35€|F|15|ES|
|Botron|10g|31€|F|13|ES|
|Puller|0.50mg|35€|T|1|EN|
...
0
votes
1answer
82 views
Cursor Returning null After DB Overwritten
My app has a static DB which I need to update with new content. The schema won't change. I've put the DB into assets/ and when the app launches it, it copies the DB (in the SQLiteOpenHelper ...
0
votes
1answer
158 views
select specific rows in database based on string array
My app is a trivia app that i get questions from the database. There are also topics in this app and I thought to implement this by having a column in the database specifically for holding a value ...
0
votes
2answers
75 views
cannot find whats causing Finalizing a Cursor that has not been deactivated or closed
I can't find what causing this error in my database, I posted some question before related to this issue but since the code is quite long i remove some of them that has the same
declaration because ...
0
votes
5answers
159 views
How to properly close a cursor in android
I have this database using sqlite, and I'm having problem with closing the cursor its saying that Application did not close the cursor or database object that was opened here here's the logcat
10-18 ...
1
vote
2answers
111 views
How to close a cursor in android
how do you close a cursor this error keeps showing everytime the database is called
10-18 03:29:52.191: E/Cursor(426): Finalizing a Cursor that has not been deactivated or closed. database = ...
1
vote
3answers
101 views
When should I close a cursor and db?
I use the same cursor multiple times in the custom view in its different methods. Should I close the cursor after each use or can I keep it open until the view is destroyed? And the same for the ...
0
votes
1answer
188 views
Android-Cursor stays empty after successfull SQLite-Databasequery
after 3 Days of searching in the web and trying different stuff i'm a the end of my knowledge.
I am trying to get data from a Android-SQLitedatabase via a Cursor. The Database is created with this ...
0
votes
0answers
53 views
How correctly address to specific column in Cursor?
Lets assume, that we have some 2 tables in SQLite: TBL_PRODUCT and TBL_PRODUCT_ALIASES. Now, I want to query some data from joined two tables:
String sql = "SELECT " + TBL_PRODUCT + "." + ...
2
votes
2answers
893 views
IllegalStateException: database already closed (using ViewPager)
I'm stumped as to what is causing this error, as I have made sure that I am closing my database adapter properly (at least I think I am). Here's what LogCat's saying (the tag for all of them is ...
0
votes
0answers
42 views
Android - save database state for future queries
I have a classic implementation with database queries in a AsyncTask. All works fine but I have an issue to update the advancement (I upload rows so I just want periodically compute the totalRows / ...
0
votes
0answers
105 views
Gets values from MultiAutoComplete
I have a MultiAutoComplete TextView which is being populated from two cursors via MergeCursor. The first is the phone's contact list, and the second is from an SQLite DB which holds groups of ...
0
votes
1answer
269 views
cursor with AND in where clause
How do I add an AND to my WHERE clause in an Android Cursor?
For example:
Cursor cursor = data.query(
Banana.URI,
new String[]{BananaColumns._ID},
...
0
votes
1answer
257 views
Android SQLite: Is it a good practice to call getColumnIndex when retrieving values from a table?
Right now, I have my code looking like this:
SqlTables.java:
// Separate file
public enum SqlTables {
TABLE_1("table_1"),
.
.
.
TABLE_N("table_n");
final String name;
...


