0 purchases
dartboot mysql
The mysql library for DartBoot.
Usage #
A simple usage example:
import 'package:dartboot_mysql/dartboot_mysql.dart';
main() {
MysqlClientHelper.getClient('db1').then((client) {
client.count('select * from t_user').then((value) {
print('Mysql test user count:${value}');
});
});
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.