尝试使用sqljocky查询mysql数据库。此查询在phpmyadmin中正常工作,并返回5行精细数据。在达特我得到了例外:
Class '_ResultsImpl' has no instance method 'forEach'.
我在查询回调中创建了断点。结果对象public filds为空:
Ping功能运行良好,因此建立了与基础的连接。
即使我查询简单的“show tables”查询,它也会返回没有数据的空结果实例。
以下查询代码:
var pool = new ConnectionPool(
host: '127.0.0.1', port: 8889,
user: 'root', password: 'root',
db: 'lulzvideo', max: 5);
pool.query('select id, title from users')
.then((results) {
results.forEach((row) {
print('Name: ${row[0]}, email: ${row[1]}');
});
});
答案 0 :(得分:0)
result.listen((row) {
// Import into object
object.Import(row);