dartboot_mysql 1.0.2 copy "dartboot_mysql: ^1.0.2" to clipboard
dartboot_mysql: ^1.0.2 copied to clipboard

MySQL pool client for DartBoot.

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}');
    });
  });
}