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.