此代码正常运行。但如果我取消注释无限循环,就没有结果。结束内存深入2G,然后它会因错误而停止。
致命错误:CALL_AND_RETRY_LAST分配失败 - JavaScript堆内存不足
我做错了什么?
var Firebird = require('firebirdsql'); // or require('node-firebird');
var options = {};
options.host = '127.0.0.1';
options.port = 3050;
options.database = 'D:\\test\\test.FDB';
// ...
Firebird.attach(options, function(err, db) {
if (err)
throw err;
// while (1) { // endless loop BEGIN
db.query('SELECT first 1000 a.* FROM EVENTS a ORDER BY a.DATETIME', function(err, result) {
if (err) throw err;
for(r of result) {
console.log(r.datetime, ""+r.event_text);
// console.log(r.DATETIME, ""+r.EVENT_TEXT); // for require('node-firebird');
};
// IMPORTANT: close the connection
db.detach();
});
// } // endless loop END
});
我认为这不是那么重要,但我在Windows 10上使用节点的v6.3.1。
答案 0 :(得分:1)
使用函数setInterval而不是while循环,不要使用throw导致你退出程序。
Firebird.attach(options, function(err, db) {
setInterval(
function() {
db.query('SELECT first 1000 a.* FROM EVENTS a ORDER BY a.DATETIME', function(err, result) {
if (err) {
console.log("Error");
}
else {
for(r of result) {
console.log(r.datetime, ""+r.event_text);
};
}
// IMPORTANT: close the connection
//db.detach();
});
}, 1);
});