Skip to content

Commit fd12ff2

Browse files
committed
Fix typo in example
1 parent a675adf commit fd12ff2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828

2929
- Made installation halt sooner for Node.js versions currently known to be unusable.
3030

31+
- Fixed typo in `examples/dbmsoutputgetline.js`
32+
3133
## node-oracledb v1.1.0 (3 Sep 2015)
3234

3335
- Enhanced pool.release() to drop the session if it is known to be unusable, allowing a new session to be created.

examples/dbmsoutputgetline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var enableDbmsOutput = function (conn, cb) {
6666
var createDbmsOutput = function (conn, cb) {
6767
conn.execute(
6868
"BEGIN " +
69-
"DBMS_OUTPUT.PUT_LINE('Hello, Oracle!')`;" +
69+
"DBMS_OUTPUT.PUT_LINE('Hello, Oracle!');" +
7070
"DBMS_OUTPUT.PUT_LINE('Hello, Node!');" +
7171
"END;",
7272
function(err) { return cb(err, conn); });

0 commit comments

Comments
 (0)