mirror of https://github.com/AMT-Cheif/drift.git
42 lines
975 B
Dart
42 lines
975 B
Dart
import 'package:drift_mariadb/drift_mariadb.dart';
|
|
import 'package:drift_testcases/tests.dart';
|
|
import 'package:mysql_client/mysql_client.dart';
|
|
|
|
class MariaDbExecutor extends TestExecutor {
|
|
@override
|
|
bool get supportsReturning => true;
|
|
|
|
@override
|
|
bool get supportsNestedTransactions => true;
|
|
|
|
@override
|
|
DatabaseConnection createConnection() {
|
|
final pool = MySQLConnectionPool(
|
|
host: 'localhost',
|
|
port: 3306,
|
|
userName: 'root',
|
|
password: 'password',
|
|
databaseName: 'database',
|
|
maxConnections: 1,
|
|
secure: false,
|
|
);
|
|
|
|
return DatabaseConnection(MariaDBDatabase(pool: pool, logStatements: true));
|
|
}
|
|
|
|
@override
|
|
Future clearDatabaseAndClose(Database db) async {
|
|
await db.customStatement('DROP DATABASE `database`;');
|
|
await db.customStatement('CREATE DATABASE `database`;');
|
|
|
|
await db.close();
|
|
}
|
|
|
|
@override
|
|
Future<void> deleteData() async {}
|
|
}
|
|
|
|
void main() {
|
|
runAllTests(MariaDbExecutor());
|
|
}
|