gpt4 book ai didi

mysql - 插入多个值时 Node mysql 上的“ER_PARSE_ERROR”

转载 作者:IT老高 更新时间:2023-10-28 23:25:14 24 4
gpt4 key购买 nike

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

我得到的错误是

[ [ 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)

目前我所有的其他 sql 查询似乎都可以正常工作,所以我目前已连接到数据库。如果需要更多信息,我很乐意提供。我只是不知道在这里放更多。

最佳答案

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

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

编辑

解决此问题的方法是在 [] 中添加 put torrentFiles。现在是

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

关于mysql - 插入多个值时 Node mysql 上的“ER_PARSE_ERROR”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24287767/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com