IndexedDB Tutorial Job Search Indexed Database is a type of NoSQL database or Non-relational structured query language. It is a transactional database system like an SQL-based RDBMS. However, unlike SQL-based RDBMSs, which use fixed-column tables, IndexedDB is a JavaScript-based object-oriented database. Audience This tutorial is designed for Software Professionals who are willing to learn IndexedDB […]
Category Archives: indexeddb
IndexedDB – Object Stores Object stores are the data storage of IndexedDB. It is where data is stored. A database may have multiple object stores. Think of them as tables in RDBMS where we store data based on the type of data we want to store. To ensure database integrity, object stores can only be […]
IndexedDB – Deleting Data There are many situations where we need to delete data from the database; be it for storage purposes or just removing unwanted data to free up space. If we want to delete this unnecessary data from a database we can use the .delete() function Syntax const request = objectStore.delete(data); We use […]