Data Source
IndexedDB can be used with a traditional WireBootstrap data source to query data in stores. It can also be used as a collection into the IndexedDB object repository.
The following example illustrates the steps needed to query data inside an IndexedDB store using a data source.
Data Source
First, create the data source that uses the IndexedDB Connector's service provider. If the store does not yet exist, a new store can be created using the provider's data source configuration.
Query
Next, create a WireBootstrap select query and then execute the query against IndexedDB. The query will return a WireBootstrap DataTable. In the query, the store name is specified in the from
clause.
Last updated