Is there any way, how to get Cursor for a query, which I am processing with ORMLite Dao object?
|
As of version 4.34, ORMLite supports It also supports the following DAO Cursor methods:
When you are building your own query with ORMLite, you use the Something like the following code:
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. |
||||
|
If you mean the getHelper() method to reach the dao methods create etc. you only have to inherit from the OrmLiteBaseActivity and you can call it. It will look sth like this:
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? greetz Vince |
|||||
|
|
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. |
|||
|
|