dbapi_sqlite 0.1.0-alpha.8
dbapi_sqlite: ^0.1.0-alpha.8 copied to clipboard
SQLite dbapi connector
This package provides an SQLite connector for the dbapi
Currently support all platform except web (support planned)
Features #
Supports all dbapi features (except rowCount
)
Getting started #
Your code should depend on the pure dbapi package and a compatible dbapi_sqlite version.
Usage #
Your code should depend primarily on the core [dbapi]((https://pub.dev/packages/dbapi) interfaces - except for where you instantiate the connector
final Connector connector = SQLiteConnector(".test.db");
connection = await connector.connect();
await connection.execute(...);
Additional information #
Contribution welcome, especially as bug reports.