Dart SDK
dart:web_sql
SqlDatabase
class
SqlDatabase
Static Properties
Properties
Methods
Static properties
supported
Properties
version
Methods
changeVersion
readTransaction
transaction
(Not documented.)
Annotations
DocsEditable()
DomName('Database')
SupportedBrowser(SupportedBrowser.CHROME)
SupportedBrowser(SupportedBrowser.SAFARI)
Experimental()
Experimental()
Static Properties
bool
supported
read-only
Checks if this type is supported on the current platform.
Properties
String
version
read-only
Methods
changeVersion
(
String
oldVersion
,
String
newVersion
, [
void
callback
(
SqlTransaction
transaction
)
,
void
errorCallback
(
SqlError
error
)
,
void
successCallback
()
]) →
void
readTransaction
(
void
callback
(
SqlTransaction
transaction
)
, [
void
errorCallback
(
SqlError
error
)
,
void
successCallback
()
]) →
void
transaction
(
void
callback
(
SqlTransaction
transaction
)
, [
void
errorCallback
(
SqlError
error
)
,
void
successCallback
()
]) →
void