आप 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);
}
});
});