dart:web_sql library Null safety

An API for storing data in the browser that can be queried with SQL.

Caution: this specification is no longer actively maintained by the Web Applications Working Group and may be removed at any time. See the W3C Web SQL Database specification for more information.

The dart:indexed_db APIs is a recommended alternatives.

Classes

SqlDatabase
SqlError
SqlResultSet
SqlResultSetRowList
SqlTransaction

Typedefs

SqlStatementCallback(SqlTransaction transaction, SqlResultSet resultSet) → void
SqlStatementErrorCallback(SqlTransaction transaction, SqlError error) → void
SqlTransactionCallback(SqlTransaction transaction) → void
SqlTransactionErrorCallback(SqlError error) → void