So i'm working on an app and figureing out how to build interactions and stuff. now i'm getting to the storage of data so i can populate a scene properly when its loaded. Unfortunately... even after looking at all the examples and copying code and changing object names where appropriate.. I cannot get my app to store any data with the following command...
Code:
this.dataDepot.simpleAdd("currentScores", {"arg1": "test", "arg2":"testb"}, this.dbSuccess, this.dbFailure);
When I exit the scene and reload the scene the get statement always produces "null" as the output.
Code:
this.dataDepot.simpleGet("currentScores", this.dbGetSuccess, this.dbFailure);
Unfortunately... this.dbFailure never fires so i'm not sure what is going wrong. And I'm on vista 64 so i haven't been able to debug it through the emulator. Anyone have any working examples using the depot?