Hi,
I am trying to create content to offline store and later flush it .
i am able to retrieve the content from derby database and view it but not able to create records,
Below is the code which i am using.
Please suggest any changes or different working code if any.
void createEnity() {
try {
ODataEntityDefaultImpl entity = new ODataEntityDefaultImpl(
"GrowersList.NOTESFORTEST");
ODataProperty j = (ODataProperty) new ODataPropertyDefaultImpl(
"NOTES");
j.setValue("adsf");
ODataProperty k = (ODataProperty) new ODataPropertyDefaultImpl("ID");
k.setValue("2333");
reqparam = new ODataRequestParamSingleDefaultImpl();
reqparam.setMode(Mode.Create);
reqparam.setPayload(entity);
} catch (Exception e) {
e.printStackTrace();
}
try {
store.executeRequest(reqparam);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
store.flushQueuedRequests();
} catch (ODataException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
Thanks,
Raghu