@@ -4662,10 +4662,12 @@ connection.execute(
4662
4662
});
4663
4663
` ` `
4664
4664
4665
- For IN binds the direction must be ` BIND_IN ` . The type can be
4666
- ` STRING ` , ` NUMBER ` , ` DATE ` matching the data. The type ` BUFFER ` can
4667
- bind a Node.js Buffer to an Oracle Database ` RAW ` or ` BLOB ` type. The
4668
- type ` CURSOR ` cannot be used with IN binds.
4665
+ For IN binds the direction must be ` BIND_IN ` . The bind type can be
4666
+ ` STRING ` , ` NUMBER ` , ` DATE ` matching the standard JavaScript types.
4667
+ The bind type can be ` BLOB ` and ` CLOB ` to pass in [Lob](#lobclass)
4668
+ instances. The type ` BUFFER ` can bind a Node.js Buffer to an Oracle
4669
+ Database ` RAW ` or ` BLOB ` type. The type ` CURSOR ` cannot be used with
4670
+ IN binds.
4669
4671
4670
4672
### <a name="outbind"></a> 13.2 OUT and IN OUT Bind Parameters
4671
4673
@@ -4679,7 +4681,7 @@ properties is used. For
4679
4681
The ` dir` attribute should be ` BIND_OUT ` or ` BIND_INOUT ` .
4680
4682
4681
4683
For ` BIND_INOUT ` parameters, the ` type` attribute should be ` STRING ` ,
4682
- ` NUMBER ` , ` DATE ` or ` BUFFER ` .
4684
+ ` NUMBER ` , ` DATE ` , ` BLOB ` , ` CLOB ` or ` BUFFER ` .
4683
4685
4684
4686
For ` BIND_OUT ` parameters the ` type` attribute should be ` STRING ` ,
4685
4687
` NUMBER ` , ` DATE ` , ` CURSOR ` , ` BLOB ` , ` CLOB ` or ` BUFFER ` .
0 commit comments