gpt4 book ai didi

mysql - 通过 node.js 向 mysql 中插入多行

转载 作者:可可西里 更新时间:2023-11-01 08:47:26 26 4
gpt4 key购买 nike

我想通过 node.js mysql 模块将多行插入到 mysql 中。我的数据是

var data = [{'test':'test1'},{'test':'test2'}];

我正在使用池

 pool.getConnection(function(err, connection) {
connection.query('INSERT INTO '+TABLE+' SET ?', data, function(err, result) {
if (err) throw err;
else {
console.log('successfully added to DB');
connection.release();
}
});
});
}

失败了。

有没有办法让我批量插入并在所有插入完成后调用一个函数?

问候锤子

最佳答案

你也可以试试这个方法

假设 mytable 包括以下列:name, email

var inserts = [];
inserts.push(['name1', 'email1']);
inserts.push(['name2', 'email2']);
conn.query({
sql: 'INSERT into mytable (name, email) VALUES ?',
values: [inserts]
});

这应该可行

关于mysql - 通过 node.js 向 mysql 中插入多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24348999/

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