插入多个值时节点mysql上的'ER_PARSE_ERROR'

buh*_*ang 10 mysql sql node.js node-mysql

我正在尝试使用节点中的node-mysql将多个值放入数据库.我的源代码

engine.files.forEach(function(file) {
  torrentpath = file.path.replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;").replace(/'/g, "&apos;").replace(/\\/g, "/");
  torrentFiles.push([
    result.insertId,
    torrentpath,
    file.length
  ]);
});

console.log(torrentFiles);

app.mysql.query('INSERT INTO `files` (`torrentid`, `filename`, `filesize`) VALUES ?', torrentFiles, function(err, result) {
  if (err) throw err;
});
Run Code Online (Sandbox Code Playgroud)

我得到的错误是

[ [ 11, 'ubuntu-14.04-desktop-amd64.iso', 1010827264 ] ]

Error: ER_PARSE_ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '11, 'ubuntu-14.04-desktop-amd64.iso', 1010827264' at line 1
    at Query.Sequence._packetToError (C:\wamp\www\sleepytorrentdownload\src\node_modules\mysql\lib\protocol\sequences\Sequence.js:30:14)
Run Code Online (Sandbox Code Playgroud)

目前我所有的其他SQL查询似乎都工作,所以我目前连接到数据库.如果需要更多信息,我很乐意给他们.我只是不知道更多要放在这里.

buh*_*ang 12

我最终只是在查询中使用了mysql.escape(val)

 app.mysql.query('INSERT INTO `files` (`torrentid`, `filename`, `filesize`) VALUES '+app.mysql.escape(torrentFiles), function(err, result) 
Run Code Online (Sandbox Code Playgroud)

编辑

对此问题进行修复是把加torrentFiles[].就是现在

app.mysql.query('INSERT INTO `files` (`torrentid`, `filename`, `filesize`) VALUES ? ', [torrentFiles], function(err, result)
Run Code Online (Sandbox Code Playgroud)

  • 你的编辑节省了我的时间,谢谢! (3认同)