我按照本教程(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 ?

最佳答案

我终于找到了使用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);
            }
        });
    });
}

关于javascript - 错误:将数据插入表时读取ECONNRESET,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56390743/

10-10 00:30
查看更多