Skip to Content
0
Former Member
Jan 21, 2014 at 04:46 PM

Ultralite database is not Supporting delete operation in Query class in Android Native App using SUP 2.2 SP 4

34 Views

Hi All,

I am developing Android Native Application using SUP 2.2 SP04 generated code.I want to useultralite database and develop select,create and delete operations in that.


I am Using Select operation perfectly but unable to use Delete and Insert Operations in "Query" Class(API Given by Sybase).

Anyone please suggest me how to overcome this issue and possibilities to do these Operations in my Android Native Application.

Here is my Query,

Query query = new Query();

query.select("x.ID, x.TITLE, x.DESCRIPTION");

query.from("MyLocalDatabaseDB", "x");

query.orderBy("id", SortOrder.ASCENDING);

query.setTake(take);

query.setSkip(skip);

Regards,

V B Jampana.