Haxe API Documentation
Back | Index
extern class js.html.sql.DatabaseSync
Available in js

DRAFT
This page is not complete.

The DatabaseSync interface in the IndexedDB API represents a synchronous connection to a database.



Documentation for this class was provided by MDN.

var lastErrorMessage(default,null) : String
var version(default,null) : String
The version of the connected database. Has the null value when the database is first created.
function changeVersion(oldVersion : String, newVersion : String, ?callback_ : TransactionSyncCallback) : Void
function readTransaction(callback_ : TransactionSyncCallback) : Void
function transaction(callback_ : TransactionSyncCallback) : Void
Back | Index