Можете да използвате 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);
}
});
});