Give us feedback
web-api-indexeddb
Reactive icon

Web API IndexedDB

Stable version 0.8.0 (Compatible with OutSystems 11)
Uploaded on 20 January 2022 by 
0.0
 (0 ratings)
web-api-indexeddb

Web API IndexedDB

Details
IndexedDB is a low-level API for client-side storage of significant amounts of structured data, including files/blobs. This API uses indexes to enable high-performance searches of this data.
Read more

Purpose


The purpose of this component is to have support for local storage in Web REACTive applications.

IndexedDB also supports the storage of JavaScript objects which have some interesting applications.


Key concepts

IndexedDB is a transactional database system, like an SQL-based RDBMS. However, unlike SQL-based RDBMSes, which use fixed-column tables, IndexedDB is a JavaScript-based object-oriented database. IndexedDB lets you store and retrieve objects that are indexed with a key; any objects supported by the structured clone algorithm can be stored. You need to specify the database schema, open a connection to your database, and then retrieve and update data within a series of transactions.

Release notes (0.8.0)
  • Minor bug fix
Reviews (0)