Skip to Content | Skip to Navigation


dojox.data.PersevereStore

Status:Draft
Version:1.0
Authors:Kris Zyp
Developers:Kris Zyp
Available:since V1.2

dojox.data.PersevereStore is a subclass of JsonRestStore <dojo/data/JsonRestStore> for connecting to a Persevere <http://sitepen.com/labs/persevere.php> server.

Introduction

PersevereStore essentially has the same functionality as JsonRestStore, but has some extra adaptations for automatic creation of stores based on Persevere’s introspective table/class querying.

Usage

You can create a set of stores for all available Persevere classes/tables:

myStores = dojox.data.PersevereStore.getStores("/",true); // do it synchronously
... or ...
dojox.data.PersevereStore.getStores("/").addCallback(function(results){
  // do it asynchronously
  myStores = results;
});

This will return a object where each property name is the name of the store, and each value is the actual store for interacting with the Persevere database.

See also