Indexed Database API 3.0

PHOTO EMBED

Sat Aug 02 2025 19:46:51 GMT+0000 (Coordinated Universal Time)

Saved by @Asneedarazali #javascript

const tx = db.transaction("books", "readwrite");
const store = tx.objectStore("books");

store.put({title: "Quarry Memories", author: "Fred", isbn: 123456});
store.put({title: "Water Buffaloes", author: "Fred", isbn: 234567});
store.put({title: "Bedrock Nights", author: "Barney", isbn: 345678});

tx.oncomplete = function() {
  // All requests have succeeded and the transaction has committed.
};
content_copyCOPY

https://www.w3.org/TR/2025/WD-IndexedDB-3-20250731/