Service Provider
Use the IndexedDB connector service provider to use IndexedDB as a data source.
Provider Key
Use the indexed-db
provider key to use the service provider for this data connector with a data source.
Configuration
stores
Stores
name
The name of the store
data
The array of data objects used to initialize the store.
The following example creates a new data source using the IndexedDB Connector. When initialized, the service provider will create new a store called My Store
in IndexedDB if it does not already exist adding an array of fruits
data.
Allow
Service providers are able to tell consumers about the functionality they support through an allow
property. Below is a list of the functionality that the service provider supports.
delete
false
discover
false
storedProcedure
false
tableQuery
true
test
false
write
false
Last updated