public
Description: SQL Lite wrapper for restfull key-value store.
Homepage:
Clone URL: git://github.com/silentrob/mobile-store.git
name age message
file README Mon Apr 13 10:10:37 -0700 2009 first commit [silentrob]
file readme.md Mon Oct 19 17:32:30 -0700 2009 added set [silentrob]
file store.iphone.js Mon Oct 19 18:25:56 -0700 2009 Added more test [silentrob]
file test.iphone.html Wed Nov 25 08:40:27 -0800 2009 updated test to actual return something [silentrob]
readme.md

Mobile Store

Key Value Pair for mobile devices

store.get(key, callback); // callback will return the elements value 
store.post(key, value);    
store.put(key, value);
store.set(key, value); // INSERT -- OR -- UPDATE    
store.del(key);
store.exists(key,callback); // callback will return true or false
store.clear(); clears the db