sqlbase 0.0.1
sqlbase: ^0.0.1 copied to clipboard
Dart to php to Sql database
SQLbase #
Dart to php to Sql database
Usage #
There a php file in the asset folder of this project
In Dart #
To use the plugin, run
//use this to initialize the plugin
Sqlbase.initialize(url: "http://localhost/sqlbase.php", key: '123456');
Queries #
This looks similar to firebase queries
// To get all data from a table
await myDB.table("tablename").get();