영어에서 Indexeddb 을 사용하는 예와 한국어로 번역
{-}
-
Colloquial
-
Ecclesiastic
-
Ecclesiastic
-
Programming
-
Computer
The IndexedDB API is mostly asynchronous.
Most methods of the IndexedDB API are asynchronous.
IndexedDB and WebSQL interfaces are disabled.
Interfaces like IndexedDB and WebSQL are disabled.
IndexedDB is built on a transactional database model.
The basic pattern that IndexedDB encourages is the following.
IndexedDB does not use Structured Query Language(SQL).
This section defines and explains terms used in the IndexedDB API.
IndexedDB uses DOM events to notify you when results are available.
This section defines and explains terms used in the IndexedDB API.
To learn more about IndexedDB terms, see the Definitions section.
This introduction discusses essential concepts and terminology in IndexedDB.
Using IndexedDB is more complicated than the other browser storage methods.
Like most web storage solutions, IndexedDB follows a same-origin policy.
IndexedDB Client-side storage of structured data with support for high-performance searches.
Like most web storage solutions, IndexedDB follows a same-origin policy.
IndexedDB uses object stores rather than tables, and a single database can contain any number of object stores.
To get access to a database, call open() on the indexedDB attribute of a window object.
IndexedDB used to have a competing spec, WebSQL Database, but the W3C deprecated it on November 18, 2010.
This is the interface implemented by the global object indexedDB and is therefore the entry point for the API.
When quota exceeds on IndexedDB API, the error calls the transaction's onabort() function with Event as an argument.
Auto-persistence systems(e.g persisting changes to IndexedDB or localStorage).
Everything you do in IndexedDB always happens in the context of a transaction.
Examples eLibri: A powerful library and eBook reader application, written by Marco Castelluccio, winner of the IndexedDB Mozilla DevDerby.
Note: Firefox actually stores the IndexedDB data in sqlite as a compressed BLOB, so the size of original object won't be reflected.
But even if synchronous APIs are supported, in the majority of cases where you use IndexedDB, you are likely to use the asynchronous API anyway.
IndexedDB, on the other hand, requires you to create an object store for a type of data and simply persist JavaScript objects to that store.
You can enjoy OWA offline in IE10+(using HTML5's IndexedDB for storage), Chrome 17+(with WebSQL) or Safari 5(also using WebSQL).
For example, systems developers are used tohaving a filesystem that they can read from and write to, so Emscripten can simulate a file system using IndexedDB.
A powerful example of what IndexedDB can be utilized for on the web is the example by Marco Castelluccio, winner of the IndexedDB Mozilla DevDerby.