Node.js mysql错误抛出err;它说考虑升级MySQL客户端

时间:2019-04-01 21:59:44

标签: mysql node.js

每次尝试连接时,都会出现此错误。我不明白为什么,因为我刚刚安装了它。

我的代码:

var mysql = require('mysql');
var con = mysql.createConnection({
  host: "localhost",
  user: "root",
  password: "Bobby"
});

con.connect(function(err) {
  if (err) throw err;
  console.log("Connected!");
});

`

我可以做些什么来建立连接吗?

0 个答案:

没有答案