@@ -6191,7 +6191,7 @@ and [`maxSize`](#executebindParams) properties is used:
6191
6191
explicitly set to `oracledb.STRING`, `oracledb.NUMBER`,
6192
6192
`oracledb.DATE`, `oracledb.BLOB`, `oracledb.CLOB` or
6193
6193
`oracledb.BUFFER`, matching the data type of the Node.js value or
6194
- variable. The output data type will always be the same as the the
6194
+ variable. The output data type will always be the same as the
6195
6195
input data type.
6196
6196
6197
6197
For `oracledb.BIND_OUT` parameters the `type` attribute will be the
@@ -6201,7 +6201,15 @@ and [`maxSize`](#executebindParams) properties is used:
6201
6201
`oracledb.CLOB`. If `type` is not specified for OUT binds then
6202
6202
`oracledb.STRING` is assumed.
6203
6203
6204
- Oracle Database RAW, LONG RAW or BLOB data can be bound with a
6204
+ Oracle Database CLOB data can be bound with a `type` of
6205
+ `oracledb.STRING` to return a Node.js String, or as `type` of
6206
+ `oracledb.CLOB` to return a [Lob instance](#lobclass).
6207
+
6208
+ Oracle Database BLOB data can be bound with a `type` of
6209
+ `oracledb.BUFFER` to return a Node.js Buffer, or as `type` of
6210
+ `oracledb.BLOB` to return a [Lob instance](#lobclass).
6211
+
6212
+ Oracle Database RAW and LONG RAW data can be bound with a
6205
6213
`type` of `oracledb.BUFFER` to return a Node.js Buffer.
6206
6214
6207
6215
Oracle Database LONG, ROWID and UROWID data can be bound with a
0 commit comments