草案
此页面不完整。
重要 : The synchronous version of the IndexedDB API was originally intended for use only with Web 工作者 , and was eventually removed from the spec because its need was questionable. It may however be reintroduced in the future if there is enough demand from web developers.
IDBFactorySync
接口在
IndexedDB API
provide a synchronous means of accessing the capabilities of indexed databases.
IDBDatabaseSync
open
(in DOMString name, in DOMString description, in optional boolean modifyDatabase) raises (
IDBDatabaseException
);
|
Opens and returns a 连接到数据库 . Blocks the calling thread until the connection object is ready to return. If there is already a database with the specified name, it uses that one; otherwise, it creates the database using the specified name and description.
IDBDatabaseSync open ( in DOMString name, in DOMString description ) raises (IDBDatabaseException);
The name for the database.
The description for the database.
IDBDatabaseSync
An object to access the open database.
This method can raise an IDBDatabaseException with the following codes:
NON_TRANSIENT_ERR
名称
parameter is not valid. A valid name is any string including the empty string.
UNKNOWN_ERR
If an error occurs while the database is being opened.
IDBFactorySync
IDBCursor
IDBCursorSync
IDBCursorWithValue
IDBDatabase
IDBDatabaseException
IDBDatabaseSync
IDBEnvironment
IDBEnvironmentSync
IDBFactory
IDBIndex
IDBIndexSync
IDBKeyRange
IDBObjectStore
IDBObjectStoreSync
IDBOpenDBRequest
IDBRequest
IDBTransaction
IDBTransactionSync
IDBVersionChangeEvent
IDBVersionChangeRequest