mysql5_client

Last updated:

0 purchases

mysql5_client Image
mysql5_client Images
Add to Cart

Description:

mysql5 client

mysql_client #
A mysql5.x library for Dart developers.
Usage #
A simple usage example:
import '../lib/mysql5_client.dart';

void main() async {
Connection? connection;

try {
connection = await new ConnectionFactory()
.connect("localhost", 3306, "root", "shit", "db_test");

// please pre-insert row that id = 1
var statement = await connection.prepareQuery("UPDATE stud SET name = ? WHERE id = 1");
statement.setParameter(0, "fuck老天");
var queryResult = await statement.executeQuery();
print(queryResult.affectedRows);

queryResult =
await connection.executeQuery("SELECT * FROM stud WHERE id = 1");

// rows
while (true) {
var next = await queryResult.next();
if (!next) {
break;
}

print("${queryResult.getNumValue(0)} : ${queryResult.getStringValue(1)}}");
}
} finally {
await connection?.close();
}
}
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.