Můžete použít SQLJocky pro připojení k MySQL. Přidat
dependencies:
sqljocky: 0.0.4
na váš pubspec.yaml spustit hospodářskou instalaci . Nyní se můžete připojit k MySQL takto
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);
}
});
});