You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/src/api_manual/connection.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -611,8 +611,8 @@ Connection Methods
611
611
LOBs created with ``createLob()`` can be bound for IN, IN OUT and OUT
612
612
binds.
613
613
614
-
See :ref:`Working with CLOB, NCLOBand BLOB Data <lobhandling>` and:ref:`LOB
615
-
Bind Parameters <lobbinds>` for more information.
614
+
See :ref:`Working with CLOB, NCLOB, BLOB and BFILE Data <lobhandling>` and
615
+
:ref:`LOB Bind Parameters <lobbinds>` for more information.
616
616
617
617
The parameters of the ``connection.createLob()`` method are:
618
618
@@ -632,7 +632,7 @@ Connection Methods
632
632
- Description
633
633
* - ``type``
634
634
- Number
635
-
- One of the constants :ref:`oracledb.CLOB <oracledbconstantsnodbtype>`, :ref:`oracledb.BLOB <oracledbconstantsnodbtype>`, or :ref:`oracledb.NCLOB<oracledbconstantsnodbtype>` (or equivalent ``DB_TYPE_*`` constants).
635
+
- One of the constants :ref:`oracledb.CLOB <oracledbconstantsnodbtype>`, :ref:`oracledb.BLOB <oracledbconstantsnodbtype>`, :ref:`oracledb.NCLOB <oracledbconstantsnodbtype>`, or :ref:`oracledb.BFILE<oracledbconstantsnodbtype>` (or equivalent ``DB_TYPE_*`` constants).
:summary: The first column displays the parameter. The second column displays the data type of the parameter. The third column displays the description of the parameter.
323
+
324
+
* - Parameter
325
+
- Data Type
326
+
- Description
327
+
* - ``dirFileName``
328
+
- Object
329
+
- This parameter contains the directory alias and file name of the BFILE type LOB.
Copy file name to clipboardExpand all lines: doc/src/api_manual/oracledb.rst
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -214,6 +214,10 @@ for common :ref:`Oracle Database Type Constants <oracledbconstantsdbtype>`.
214
214
- Value
215
215
- ``DbType`` Object Equivalent
216
216
- Notes
217
+
* - ``oracledb.BFILE``
218
+
- 2020
219
+
- ``oracledb.DB_TYPE_BFILE``
220
+
-
217
221
* - ``oracledb.BLOB``
218
222
- 2019
219
223
- ``oracledb.DB_TYPE_BLOB``
@@ -874,6 +878,7 @@ Constants for two-phase commit (TPC) functions
874
878
875
879
Vector Type Constants
876
880
---------------------
881
+
877
882
.. versionadded:: 6.5
878
883
879
884
Constants for the :ref:`vectorFormat <execmetadata>` attribute.
@@ -899,6 +904,13 @@ Constants for the :ref:`vectorFormat <execmetadata>` attribute.
899
904
* - ``oracledb.VECTOR_FORMAT_INT8``
900
905
- 4
901
906
- The storage format of each dimension value in the VECTOR column is an 8-bit signed integer.
907
+
* - ``oracledb.VECTOR_FORMAT_BINARY``
908
+
- 5
909
+
- The storage format of each dimension value in the VECTOR column is represented as a single bit. All the dimensions for the vector are stored as an array of 8-bit unsigned integers.
910
+
911
+
.. versionchanged:: 6.6
912
+
913
+
The ``oracledb.VECTOR_FORMAT_BINARY`` constant was added.
0 commit comments