Android Cursor with ORMLite to use in CursorAdapter
Asked Answered
R

4

34

Is there any way to get Cursor for a query, which I am processing with ORMLite Dao object?

Recur answered 23/8, 2011 at 10:44 Comment(0)
H
65

ORMLite now supports next(), previous(), moveRelative(offset), ... methods on the CloseableIterator class. This should allow you to move the underlying Cursor object around at will.

It also supports the following DAO Cursor methods:


When you are building your own query with ORMLite, you use the QueryBuilder object. queryBuilder.prepare() returns a PreparedQuery which is used by various methods in the DAO. You can call dao.iterator(preparedQuery) which will return a CloseableIterator which is used to iterate through the results. There is a iterator.getRawResults() to get access to the DatabaseResults class. Under Android, this can be cast to an AndroidDatabaseResults which has a getCursor() method on it to return the Android Cursor.

Something like the following code:

// build your query
QueryBuilder<Foo, String> qb = fooDao.queryBuilder();
qb.where()...;
// when you are done, prepare your query and build an iterator
CloseableIterator<Foo> iterator = dao.iterator(qb.prepare());
try {
   // get the raw results which can be cast under Android
   AndroidDatabaseResults results =
       (AndroidDatabaseResults)iterator.getRawResults();
   Cursor cursor = results.getRawCursor();
   ...
} finally {
   iterator.closeQuietly();
}

This is a bit complicated but you are definitely having to peer behind the vale to get to this object which is hidden by the database abstraction classes.

Haematoma answered 23/8, 2011 at 12:41 Comment(7)
how can i obtain the databaseConnection?Affaire
I've changed this answer to show how it can be done without needed the database connection.Haematoma
@Haematoma What is the best way to inflate the list_item views using the cursor? Also, is a CursorAdapter the best thing to use with OrmLiteBaseListActivity?Poodle
Sorry @mattblang. I'm not an Android developer. I'd ask that question on the mailing list: groups.google.com/forum/#!forum/ormlite-androidHaematoma
@Haematoma your contribution on SO specifically regarding ORMLite is much appreciated, tnxThymelaeaceous
@Haematoma when using this strategy in and handing the cursor off to a SimpleCursorAdapter or CursorAdapter subclass of my own used with an Android Grid/ListView, I get a StaleDataException -- I noticed commenting out the iterator.closeQuietly() prevents this from happening. What would you suggest to work-around this -- apart from keeping the iterator around until I'm done with the cursor?Hysteresis
@Hysteresis Yes, same problem here. What did you end up doing?Poodle
I
0

If you mean the getHelper() method to reach the dao methods create etc. you only have to inherit from the OrmLiteBaseActivity<YourDBHelper> and you can call it. It will look sth like this:

public class YourClass extends OrmLiteBaseActivity<YourDBHelper> {
  @Override
  protected void onCreate(Bundle savedInstanceState) {
     ...
     getHelper().getDao().queryForAll();
     ...
  }
}

If you mean the cursor to handle database operation: I don't think that you can reach it! But I don't understand why you should need it. ORMLite has nearly all functions of the cursor. So what do you need it for?

Inamorata answered 23/8, 2011 at 11:15 Comment(1)
I know about this, but I need to get Cursor to use it in CursorAdapter.Recur
A
0

Did you try some of Gray's advice from this post? He explains how you can select a column as another name, such as, select id as _id.

Ashcan answered 19/10, 2012 at 11:6 Comment(2)
Since you can name your columns in ormlite I guess why not just name them _id, rather than doing the select as :) ?Bettor
Sure, you can, but in an instance where renaming them is not an option, you simply use the sql syntax of "as";)Ashcan
I
0

If you're in an Activity and don't want to mess around with the QueryBuilder give the following a go, which is just as effective.

Cursor cursor = getHelper().getReadableDatabase().query(tableName, projection, selection, selectionArgs, groupBy, having, sortOrder)
Inaccuracy answered 22/6, 2013 at 12:24 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.