Skip to content

Commit

Permalink
Fix naming of autoCommit in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbj committed May 26, 2015
1 parent e55a108 commit 6cf6524
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/dmlrupd1.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ oracledb.getConnection(
rid: { type: oracledb.NUMBER, dir: oracledb.BIND_OUT },
rname: { type: oracledb.STRING, dir: oracledb.BIND_OUT }
},
{ isAutoCommit: true },
{ autoCommit: true },
function(err, result)
{
if (err)
Expand Down
2 changes: 1 addition & 1 deletion examples/dmlrupd2.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ oracledb.getConnection(
rid: { type: oracledb.NUMBER, dir: oracledb.BIND_OUT },
rname: { type: oracledb.STRING, dir: oracledb.BIND_OUT }
},
{ isAutoCommit: true },
{ autoCommit: true },
function(err, result)
{
if (err)
Expand Down

0 comments on commit 6cf6524

Please sign in to comment.