perf: python-oracledb Thin Mode

pull/11293/head
吴小白 2023-08-16 13:11:48 +08:00
parent 91867fa01d
commit df1aa73723
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class OracleClient(object):
def cursor(self):
if self._cursor is None:
try:
oracledb.init_oracle_client(lib_dir='/opt/oracle/instantclient_19_10')
# oracledb.init_oracle_client(lib_dir='/opt/oracle/instantclient_19_10')
self._conn = oracledb.connect(**self.connect_params)
self._cursor = self._conn.cursor()
except DatabaseError as err: