SQLJocky を使用できます MySQLに接続します。追加
dependencies:
sqljocky: 0.0.4
pubspec.yamlに パブインストールを実行します 。これで、このようにMySQLに接続できます
var cnx = new Connection();
cnx.connect(username, password, dbName, port, hostname).then((nothing) {
// Do something with the connection
cnx.query("show tables").then((Results results) {
print("tables");
for (List row in results) {
print(row);
}
});
});