有没有人可以告诉我如何使用Dart连接到mysql数据库?我一直在阅读和搜索天,但找不到任何合适的答案。我只是在学习网络编程。谢谢!
答案 0 :(得分:15)
您可以使用SQLJocky连接到MySQL。添加
dependencies:
sqljocky: 0.0.4
到 pubspec.yaml 运行 pub install 。现在你可以像这样连接到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);
}
});
});
答案 1 :(得分:4)
我认为对于飞镖2 mysql1
是一个简单的选择。
示例:
normalize = w => (norm => w.map(x => x / norm))(Math.sqrt(w.map(x => x * x).reduce((a, b) => a + b)))
(在Dart版本2.1.0(内部版本2.1.0-dev.9.4 f9ebf21297)上进行了测试)
答案 2 :(得分:1)
我没试过,但这里有一个:http://github.com/jamesots/sqljocky
答案 3 :(得分:1)
您可以尝试使用sqljocky - > http://pub.dartlang.org/packages/sqljocky