通过Dart连接到数据库时出现异常

时间:2018-05-19 03:54:35

标签: dart flutter sqljocky

我尝试使用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());
    }); 

然后我收到了exception: 我已连接到MySQL数据库,并且查询正在退出而没有错误。 如果有人能解决这个问题,我会非常感激。

1 个答案:

答案 0 :(得分:0)

不是默认的Mysql端口号3306吗?