mysql_client 0.0.16
mysql_client: ^0.0.16 copied to clipboard
Native MySQL client written in Dart. Tested with MySQL Percona Server (5.7, 8), MariaDB (10). Supports TLS.
Native MySQL client written in Dart for Dart #
See example directory for examples and usage
Tested with:
- MySQL Percona Server 5.7 and 8 versions
- MariaDB 10 version
Roadmap #
- ✅ Auth with mysql_native_password
- ✅ Basic connection
- ✅ Connection pool
- ✅ Query placeholders
- ✅ Transactions
- ✅ Prepared statements (real, not emulated)
- ✅ SSL connection
- ✅ Auth using caching_sha2_password (default since MySQL 8)
- ✅ Iterating large result sets
- ✅ Typed data access
- ❌ Send data in binary form when using prepared stmts (do not convert all into strings)
- ❌ Multiple resul sets
Usage #
Create connection pool
final pool = MySQLConnectionPool(
host: '127.0.0.1',
port: 3306,
userName: 'your_user',
password: 'your_password',
maxConnections: 10,
databaseName: 'your_database_name', // optional,
);
Or single connection
final conn = await MySQLConnection.createConnection(
host: "127.0.0.1",
port: 3306,
userName: "your_user",
password: "your_password",
databaseName: "your_database_name", // optional
);
// actually connect to database
await conn.connect();
Warning By default connection is secure. If you don't want to use SSL (TLS) connection, pass secure: false
Query database
var result = await pool.execute("SELECT * FROM book WHERE id = :id", {"id": 1});
Print result
for (final row in result.rows) {
print(row.assoc());
}
There are two groups of methods to access column data. First group returns result as strings. Second one (methods starting with typed prefix) performs conversion to specified type.
F.e.:
row.colAt(0); // returns first column as String
row.typedColAt<int>(0); // returns first column as int
Look at example/main_simple_conn.dart for other ways of getting column data, including typed data access.
Prepared statements #
This library supports real prepared statements (using binary protocol).
Prepare statement
var stmt = await conn.prepare(
"INSERT INTO book (author_id, title, price, created_at) VALUES (?, ?, ?, ?)",
);
Execute with params
await stmt.execute([null, 'Some book 1', 120, '2022-01-01']);
await stmt.execute([null, 'Some book 2', 10, '2022-01-01']);
Deallocate prepared statement
await stmt.deallocate();
Transactions #
To execute queries in transaction, you can use transactional() method on connection or pool object Example:
await pool.transactional((conn) async {
await conn.execute("UPDATE book SET price = :price", {"price": 300});
await conn.execute("UPDATE book_author SET name = :name", {"name": "John Doe"});
});
In case of exception, transaction will roll back automatically.
Iterating large result sets #
In case you need to process large result sets, you can use iterable result set. To use iterable result set, pass iterable = true, to execute() or prepare() methods. In this case rows will be ready as soon as they are delivered from the network. This allows you to process large amount of rows, one by one, in Stream fashion.
When using iterable result set, you need to use result.rowsStream.listen instead of result.rows to get access to rows.
Example:
// make query (notice third parameter, iterable=true)
var result = await conn.execute("SELECT * FROM book", {}, true);
result.rowsStream.listen((row) {
print(row.assoc());
});
Tests #
To run tests execute
dart test
Troubleshooting #
There is separate logging branch of mysql_client. This branch will stay in sync with main branch of this repository, with one main difference - it has logging enabled.
If you have issues, you can temporary switch to logging branch, run your app with --enable-asserts and check log messages.
Here is how you can switch to logging branch in your pubspec.yaml file:
mysql_client:
git: https://github.com/zim32/mysql.dart.git
ref: logging
Don't forget to switch back again, when you're done with debugging.