我正在尝试发出请求,将返回的数据添加到请求的“行”事件中的 cb 上的对象中,然后在“完成”cb 中执行某些操作。很简单;但是,“完成”事件显然没有被触发。这是我当前的代码:
var connection = new Connection(config);
var executeTest = function (connection) {
var result = [];
var statement = "select val1, val2 from table;"
var request = new Request(statement, function (err, rowCount) {
if (err) {
console.log(err);
}
console.log(rowCount);
connection.close();
});
request.on('row', function(columns) {
var thisRow = {};
columns.forEach(function(column) {
thisRow[column.metadata.colName] = column.value;
result.push(thisRow);
});
console.log(result); //not empty
//tried making request2 here, no dice
//tried making a second connection here, no dice
//got error:
//'requests can only be made in the LoggedIn state,
//not the SentClientRequest state' :(
})
request.on('done', function (rC, more, row) { //never called
console.log(rC, more, row);
//other things to do
})
connection.execSql(request);
}
function test () {
var connection = new Connection(configure);
connection.on('connect', function(err) {
if (err) {console.log(err);}
console.log("Connected");
executeTest(connection);
})
}
test();
console.log(result); // []
//make second request using values from result
此外,如果有人可以解释如何将查询的结果用作另一个查询的参数,那就太好了。在我调用 test 之后,obv 结果为空,但是当它在 request.on('row', cb) 中不为空时,我无法使用当前的 thisRow obj 在该 cb 中发出第二个请求。我需要使用交易吗?如果是这样,请举一个例子,说明如何在繁琐的事务中进行嵌套查询,其中第一个查询的结果作为参数馈送到第二个查询?谢谢。