Vous pouvez utiliser SQLJocky pour se connecter à MySQL. Ajouter
dependencies:
sqljocky: 0.0.4
à votre pubspec.yaml une exécution d'installation pub . Vous pouvez maintenant vous connecter à MySQL comme ceci
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);
}
});
});