我试图使用 sqljocky5 使用以下代码使用 dart 语言连接到 Flutter 应用程序中的 MySQL 数据库
void getInfo () async {
var pool = new ConnectionPool(
host: 'localhost',
port: 3305,
user: 'root',
password: 'mysql',
db: 'smartlender',
max :5
);
print('test');
var results = await pool.query('SELECT employee.firstName FROM smartlender.employee;'); // exception is thrown here
results.forEach((row){ // for each loop to add data to the list created above
names.add(row[0].toString());
});
然后我收到了这个异常:我有到 MySQL 数据库的工作连接并且查询正在退出而没有错误。如果有人可以解决此问题,我将不胜感激。