python-oracledb icon indicating copy to clipboard operation
python-oracledb copied to clipboard

Python driver for Oracle Database conforming to the Python DB API 2.0 specification. This is the renamed, new major release of cx_Oracle

Results 90 python-oracledb issues
Sort by recently updated
recently updated
newest added

server: ``` Oracle Database 19c Standard Edition 2 Release 19.0.0.0.0 - Production Version 19.16.0.0.0 ``` client: ``` >>> print("platform.platform:", platform.platform()) platform.platform: Linux-5.10.0-17-amd64-x86_64-with-glibc2.31 >>> print("sys.maxsize > 2**32:", sys.maxsize > 2**32) sys.maxsize...

bug

The `subscr` module defines classes related to CQN functionality. It would be really nice to see these classes fully decked out with type hints. Here are some ideas: * `Message.queries`...

enhancement

### 1. What versions are you using? ``` Oracle 19c platform.platform: macOS-11.6.8-x86_64-i386-64bit sys.maxsize > 2**32: True platform.python_version: 3.10.6 oracledb.__version__: 1.0.3 ``` ### 2. Is it an error or a hang...

bug

1. What versions are you using? python-oracledb 1.0.3 Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 platform.platform: Linux-3.10.0-1160.71.1.el7.x86_64-x86_64-with-glibc2.17 platform.python_version: 3.9.6 sys.maxsize > 2**32: True 2. Is it an error or a...

question

1. What versions are you using? oracledb: 1.0.3 python: 3.10.5 database: 19.10.0.0.0 2. Is it an error or a hang or a crash? crash 4. What error(s) or behavior you...

enhancement

Hi, I'm working on a pull request https://github.com/django/django/pull/15841 which replaces the use of cx_Oracle module with oracledb in django. However, there is a [failed test](https://djangoci.com/job/pull-requests-oracle/database=oragis19,label=oracle,python=python3.10/460/testReport/junit/gis_tests.inspectapp.tests/InspectDbTests/test_geom_columns/) that related to DB_TYPE_OBJECT. The...

enhancement

The following Python script: ```python import oracledb db = oracledb.connect("user/pwd@db") c = db.cursor() c.execute("select to_clob('foo') from dual").fetchone()[0].read(0) ``` gives the following output: ``` Traceback (most recent call last): File "/Users/walter/oracledb_bug.py",...

bug
patch available

The following Python script ```python import oracledb db = oracledb.connect("user/pwd@db", config_dir=os.environ["ORACLE_HOME"] + "/network/admin") lob = db.cursor().execute("select to_clob('foo') from dual").fetchone()[0] lob.getchunksize() ``` gives the following stacktrace: ``` Traceback (most recent call...

enhancement
patch available

1. Describe your new request in detail I think it would be useful to have a way of finding the mode of the oracledb library without having to connect to...

enhancement
patch available

Fetching timestamp with time zone raises error `ORA-01805: possible error in date/time operation` instead of returning datetime with time zone information. 1. What versions are you using? - database version:...

enhancement