This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
I wasn't happy with PhoneGap's Storage API and made it cleaner (in my eyes anyway) | |
Example: | |
db.query("someTable", ['id', 'column1', 'column2'], false, function(tx, results){ .. }); | |
db.query("someTable", ['*'], {'column1':'val', 'column2':'val'}, function(tx, results){ .. }); | |
db.save("someTable", IterableObject, function(){ ... }); | |
Doing more testing and validation later, but getting it out there now. :) | |
*/ |
NewerOlder