我按照本教程(Tutorial Insert multiple rows at a time)将多行数据插入到MySQL表中(“一次插入多行”一章。)
我对代码进行了相同的操作,但是如果数据库足够好,则会收到ECONNRESET错误而不是我的连接。
以下错误详细信息:
{ Error: read ECONNRESET
at _errnoException (util.js:1022:11)
at TCP.onread (net.js:628:25)
--------------------
at Protocol._enqueue (C:\Users\frederic.fayet\Desktop\DEV\NodeJS\TER_V1 - Reprise après pause\node_modules\mysql\lib\protocol\Protocol.js:144:48)
at Connection.query (C:\Users\frederic.fayet\Desktop\DEV\NodeJS\TER_V1 - Reprise après pause\node_modules\mysql\lib\Connection.js:200:25)
at C:\Users\frederic.fayet\Desktop\DEV\NodeJS\TER_V1 - Reprise après pause\app.js:340:24
at handlePromises (C:\Users\frederic.fayet\Desktop\DEV\NodeJS\TER_V1 - Reprise après pause\app.js:242:9)
at promise.then (C:\Users\frederic.fayet\Desktop\DEV\NodeJS\TER_V1 - Reprise après pause\app.js:251:20)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
code: 'ECONNRESET',
errno: 'ECONNRESET',
syscall: 'read',
fatal: true }
下面是我的代码,用于查询数据库:
db.query(sqlSchedules, [sqlDataSchedules], function (err, result) {
if (err) {
console.log(err);
return; //throw err;
}
//Get the number of inserted lines:
nbLinesSchedulesInserted = result.affectedRows;
console.log("Nombre d'éléments insérés : " + result.affectedRows);
});
与数据库的连接为:
db.connect(function(err) {
if (err) console.error('Error occured during the DB connection.');
console.log("DB connection: OK");
});
sqlDataSchedules是一个看起来像这样的数组:
[ [ '848633',
'Amiens',
'162700',
'162700',
'20190509',
'20190702',
2019-05-31T07:27:09.710Z ],
[ '848633',
'Villers-Bretonneux',
'163800',
'163900',
'20190509',
'20190702',
2019-05-31T07:27:09.710Z ],
[ '849401',
'St Quentin',
'074500',
'074500',
'20190527',
'20190528',
2019-05-31T07:27:09.711Z ],
... 141377 more items ]
SQL请求为:
INSERT INTO schedules (trainNumber, stopName, baseArrivalTime, baseDepartureTime, beginDate, endDate, updatedOn) VALUES ?
答案 0 :(得分:1)
只需更改MySQL max_allowed_packet。例如:
max_allowed_packet=100M
my.ini或my.cnf中。 (不要忘记重启MySQL实例服务) 它解决了我的问题。
答案 1 :(得分:0)
我终于找到了使用for循环和异步功能的解决方案:
async function loopOverRequests(data, sqlRequest, tableName) {
let nbRequests = 0;
for (var i = 0; i<data.length; i++) {
nbRequests = nbRequests + await makeTheRequest(data[i], sqlRequest);
}
console.log(nbRequests + ' imported in the table `'+ tableName + '`.');
return new Promise((resolve, reject) => {
resolve(nbRequests);
});
}
function makeTheRequest(el, sqlRequest) {
return new Promise((resolve, reject) => {
db.query(sqlRequest, el, function (err, result) {
if (err) {
console.log(err);
reject(err); //throw err;
} else {
resolve(result.affectedRows);
}
});
});
}