File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ oracledb 1.3.0 (TBD)
1313Thin Mode Changes
1414+++++++++++++++++
1515
16+ #) Added support for connecting to databases that accept passwords longer than
17+ 30 UTF-8 encoded bytes.
1618#) Added internal support for prefetching the LOB size and chunk size, thereby
1719 eliminating a :ref: `round-trip<roundtrips> ` when calling
1820 :meth: `LOB.size() ` and :meth: `LOB.getchunksize() `.
Original file line number Diff line number Diff line change @@ -79,7 +79,8 @@ cdef class Capabilities:
7979 self .compile_caps[TNS_CCAP_SQL_VERSION] = TNS_CCAP_SQL_VERSION_MAX
8080 self .compile_caps[TNS_CCAP_LOGON_TYPES] = \
8181 TNS_CCAP_O5LOGON | TNS_CCAP_O5LOGON_NP | \
82- TNS_CCAP_O7LOGON | TNS_CCAP_O8LOGON_LONG_IDENTIFIER
82+ TNS_CCAP_O7LOGON | TNS_CCAP_O8LOGON_LONG_IDENTIFIER | \
83+ TNS_CCAP_O9LOGON_LONG_PASSWORD
8384 self .compile_caps[TNS_CCAP_FIELD_VERSION] = self .ttc_field_version
8485 self .compile_caps[TNS_CCAP_SERVER_DEFINE_CONV] = 1
8586 self .compile_caps[TNS_CCAP_TTC1] = \
Original file line number Diff line number Diff line change @@ -669,6 +669,7 @@ DEF TNS_CCAP_O5LOGON = 8
669669DEF TNS_CCAP_O5LOGON_NP = 2
670670DEF TNS_CCAP_O7LOGON = 32
671671DEF TNS_CCAP_O8LOGON_LONG_IDENTIFIER = 64
672+ DEF TNS_CCAP_O9LOGON_LONG_PASSWORD = 0x80
672673DEF TNS_CCAP_END_OF_CALL_STATUS = 0x01
673674DEF TNS_CCAP_IND_RCD = 0x08
674675DEF TNS_CCAP_FAST_BVEC = 0x20
You can’t perform that action at this time.
0 commit comments