如何使用Node.js连接到远程MySQL数据库

时间:2018-09-02 23:53:15

标签: javascript mysql node.js

我正在尝试使用node连接到mysql数据库。与本地主机连接时,它工作正常。

var pool  = mysql.createPool({
    connectionLimit : 100,
    host     : 'http://<ip-address here>/phpmyadmin',
    user     : '*********',
    password : '*********',
    database : '*********'
});

pool.getConnection(function(err, connection) {
  // Use the connection
  connection.query( 'SELECT * FROM table', function(err, rows) {
  // And done with the connection.
  connection.release();

  // Don't use the connection here, it has been returned to the pool.
   });
});

上面的代码不起作用。 我在Google以及这里都找不到任何答案。

1 个答案:

答案 0 :(得分:0)

主机仅包含IP地址,请尝试删除phpmyadmin。