We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad100d6 commit a2cd4e9Copy full SHA for a2cd4e9
examples/impres.js
@@ -67,9 +67,8 @@ async function run() {
67
68
console.log('2. Implict Results using node-oracledb ResultSets:');
69
result = await connection.execute(plsql, [], { resultSet: true });
70
- for (let i = 0; i < result.implicitResults.length; i++) {
71
- console.log(" Implicit Result Set", i + 1);
72
- const rs = result.implicitResults[i];
+ for (const rs of result.implicitResults) {
+ console.log(" Implicit Result Set:");
73
while ((row = await rs.getRow())) {
74
console.log(" ", row);
75
}
0 commit comments