Bạn có thể sử dụng SQLJocky để kết nối với MySQL. Thêm
dependencies:
sqljocky: 0.0.4
vào pubspec.yaml của bạn chạy cài đặt pub . Bây giờ bạn có thể kết nối với MySQL như thế này
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);
}
});
});