Du kan bruge SQLJocky for at oprette forbindelse til MySQL. Tilføj
dependencies:
sqljocky: 0.0.4
til din pubspec.yaml en kørende pubinstallation . Nu kan du oprette forbindelse til MySQL på denne måde
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);
}
});
});