Back to Content

IDBTransaction: objectStoreNames property

files/en-us/web/api/idbtransaction/objectstorenames/index.md

latest934 B
Original Source

{{ APIRef("IndexedDB") }}

The objectStoreNames read-only property of the {{domxref("IDBTransaction")}} interface returns a {{domxref("DOMStringList")}} of names of {{domxref("IDBObjectStore")}} objects.

Value

A {{domxref("DOMStringList")}} of names of {{domxref("IDBObjectStore")}} objects.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • Using IndexedDB
  • Starting transactions: {{domxref("IDBDatabase")}}
  • Using transactions: {{domxref("IDBTransaction")}}
  • Setting a range of keys: {{domxref("IDBKeyRange")}}
  • Retrieving and making changes to your data: {{domxref("IDBObjectStore")}}
  • Using cursors: {{domxref("IDBCursor")}}
  • Reference example: To-do Notifications (View the example live).