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 06b6e00 commit a79b1aaCopy full SHA for a79b1aa
doc/api.md
@@ -4799,7 +4799,7 @@ To get the automatically inserted identifier in node-oracledb, use a
4799
. . .
4800
connection.execute(
4801
"INSERT INTO mytable (mydata) VALUES ('Hello') RETURN myid INTO :id",
4802
- {id : {type: oracledb.NUMEBR, dir: oracledb.BIND_OUT } },
+ {id : {type: oracledb.NUMBER, dir: oracledb.BIND_OUT } },
4803
function (err, result) {
4804
if (err) { console.error(err.message); return; }
4805
console.log(result.outBinds.id); // print the ID of the inserted row
0 commit comments