The transaction
method of the IDBDatabase
interface immediately returns a transaction object (IDBTransaction
) containing the IDBTransaction.objectStore
method, which you can use to access your object store.
var IDBTransaction = IDBDatabase.transaction(storeNames); var IDBTransaction = IDBDatabase.transaction(storeNames, mode);
var transaction = db.transaction(['my-store-name']); var transaction = db.transaction('my-store-name');
IDBDatabase.objectStoreNames
: var transaction = db.transaction(db.objectStoreNames);
readonly
, readwrite
and readwriteflush
(non-standard, Firefox-only.) versionchange
mode can't be specified here. If you don't provide the parameter, the default access mode is readonly
. To avoid slowing things down, don't open a readwrite
transaction unless you actually need to write into the database.readwrite
mode to change data, you would use the following: var transaction = db.transaction('my-store-name', "readwrite");
As of Firefox 40, IndexedDB transactions have relaxed durability guarantees to increase performance (see bug 1112702), which is the same behaviour as other IndexedDB-supporting browsers. Previously in a readwrite
transaction IDBTransaction.oncomplete
was fired only when all data was guaranteed to have been flushed to disk. In Firefox 40+ the complete
event is fired after the OS has been told to write the data but potentially before that data has actually been flushed to disk. The complete
event may thus be delivered quicker than before, however, there exists a small chance that the entire transaction will be lost if the OS crashes or there is a loss of system power before the data is flushed to disk. Since such catastrophic events are rare most consumers should not need to concern themselves further.
Note: In Firefox, if you wish to ensure durability for some reason (e.g. you're storing critical data that cannot be recomputed later) you can force a transaction to flush to disk before delivering the complete
event by creating a transaction using the experimental (non-standard) readwriteflush
mode (see IDBDatabase.transaction
.) This is currently experimental, and can only be used if the dom.indexedDB.experimental
pref is set to true
in about:config
.
An IDBTransaction
object.
This method may raise a DOMException
of one of the following types:
Exception | Description |
---|---|
InvalidStateError | The |
NotFoundError | An object store specified in in the storeNames parameter has been deleted or removed. |
TypeError | The value for the mode parameter is invalid. |
InvalidAccessError | The function was called with an empty list of store names. |
In this example we open a database connection, then use transaction() to open a transaction on the database. For a complete example, see our To-do Notifications app (view example live.)
var db; // Let us open our database var DBOpenRequest = window.indexedDB.open("toDoList", 4); DBOpenRequest.onsuccess = function(event) { note.innerHTML += '<li>Database initialised.</li>'; // store the result of opening the database in the db variable. // This is used a lot below db = DBOpenRequest.result; // Run the displayData() function to populate the task list with // all the to-do list data already in the IDB displayData(); }; // open a read/write db transaction, ready for adding the data var transaction = db.transaction(["toDoList"], "readwrite"); // report on the success of opening the transaction transaction.oncomplete = function(event) { note.innerHTML += '<li>Transaction completed: database modification finished.</li>'; }; transaction.onerror = function(event) { note.innerHTML += '<li>Transaction not opened due to error. Duplicate items not allowed.</li>'; }; // you would then go on to do something to this database // via an object store var objectStore = transaction.objectStore("toDoList"); // etc.
Specification | Status | Comment |
---|---|---|
Indexed Database API The definition of 'transaction()' in that specification. | Recommendation | |
Indexed Database API 2.0 The definition of 'transaction()' in that specification. | Recommendation |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 24
|
12 | 16
|
10
|
15 | 7 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | 22 | 22 | 8 | Yes |
IDBDatabase
IDBTransaction
IDBKeyRange
IDBObjectStore
IDBCursor
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/IDBDatabase/transaction