Puoi utilizzare SQLJocky per connettersi a MySQL. Aggiungi
dependencies:
sqljocky: 0.0.4
nel tuo pubspec.yaml eseguire installazione pub . Ora puoi connetterti a MySQL in questo modo
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);
}
});
});