Last updated:
0 purchases
mysql cli client
mysql_cli_client #
A simple wrapper for calling the mysql command line client from Dart.
final mysql =
MySQL(user: 'root', password: config.adminPassword!, schema: dbSchema);
// wait for mysql to start.
await mysql.waitForMysql();
print('Running backup of $dbSchema.');
mysql.backup(selectedBackupFile);
mysql.dropSchema();
mysql.createSchema();
mysql.restore(selectedBackupFile);
mysql.createUser(username: 'brett', password: 'a apasswrod');
var results = mysql.toList('select * from user');
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.