Native MySQL client written in Dart for Dart
Support My Work
I’m on @buymeacoffee. If you like my work, you can buy me a ☕ and share your thoughts 🎉 Buy me a coffee
fork from https://github.com/zim32/mysql.dart
See example directory for examples and usage
Tested with:
- MySQL Percona Server 5.7 and 8 versions
- MariaDB 10 version
- MariaDB 11.7.2 version
Roadmap
xAuth with mysql_native_passwordxBasic connectionxConnection poolxQuery placeholdersxTransactionsxPrepared statements (real, not emulated)xSSL connectionxAuth using caching_sha2_password (default since MySQL 8)xIterating large result setsxTyped data accessxSend data in binary form when using prepared stmts (do not convert all into strings)xMultiple 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,
timeZone: '+00:00', // optional: issues SET time_zone right after connect
idleTestThreshold: Duration(seconds: 30), // validates idle connections
maxConnectionAge: Duration(hours: 6),
onConnectionOpen: (conn) async {
await conn.execute("SET @app_name = 'api'");
},
retryOptions: MySQLPoolRetryOptions(
maxAttempts: 3,
delay: Duration(milliseconds: 100),
retryIf: (error) => error is SocketException,
),
);
Starting with version 1.2.1, the pool exposes extra controls: it validates idle connections, recycles long-lived sessions, lets you apply custom time_zone/collation tweaks inside onConnectionOpen, and offers a basic retry policy (via MySQLPoolRetryOptions). For visibility, call pool.status() to inspect the active, idle, and pending connection counters.
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});
Passing parameters with execute()
execute() accepts three invocation styles and, when parameters are present, it transparently switches to the binary protocol (prepared statements under the hood) so that blobs/bytes are transmitted safely and subsequent calls can reuse the cached statement:
// 1) Literal query only (text protocol)
final rs = await conn.execute('SELECT NOW() AS ts');
// 2) Named parameters
await conn.execute(
'INSERT INTO book (title, price) VALUES (:title, :price)',
{'title': 'Dart Up', 'price': 42.5},
);
// 3) Positional parameters
await conn.execute(
'UPDATE book SET cover = ? WHERE id = ?',
[Uint8List.fromList(bytes), 10],
);
If you need to stream results row-by-row instead of buffering the whole result, pass iterable: true to execute() (or prepare()), and consume rowsStream.
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.
⚠️ Decimal / NewDecimal columns – the driver deliberately returns
Stringfor these column types to preserve precision/scale. If you need native arithmetic inside Dart, either cast inside SQL (CAST(col AS DOUBLE)), parse manually, or rely on arbitrary-precision packages such asdecimal. This behavior is covered intest/mysql_client.dartandtest/column_type_test.dart.
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());
});
Multiple statements queries
This library supports multiple statements in query() method. If your query contains multiple statements, result will contain next property, which will point to the next result set.
IResulSet class implements Iterable
Multple statements are not supported for prepared statements and iterable result sets.
For example:
final resultSets = await conn.execute(
"SELECT 1 as val_1_1; SELECT 2 as val_2_1, 3 as val_2_2",
);
assert(resultSets.next != null);
for (final result in resultSets) {
// for every result set
for (final row in result.rows) {
// for every row in result set
print(row.assoc());
}
}
Tests
To run tests execute
dart test
Error handling
This library throws tree types of exceptions: MySQLServerException, MySQLClientException and MySQLProtocolException. See api reference for description of each type.
When exception is thrown, connection can be left in connected or closed state.
As a general rule, if cause of exception is MySQL server error packet, connection will be left in connected state and can be reused. If cause of exception is logical error, such as unexpected packet or something inside parsing of mysql protocol, connection will be closed and can not be used anymore.
It's up to developer to check connection state after catching exception. Inside your catch block, you can check connection status using conn.connected getter and decide what to do next.
