Skip to content

correct connectiontype not returned after acquring a connection from a pool #287

@cameronclaero

Description

@cameronclaero
  1. What versions are you using?
    2.0.1

import sys
import platform
rm:", platform.platform())
print("sys.maxsize > 2*>>>
print("platform.platform:", platform.platform())
*32:", sys.maxsize > 232)
print("platform.pythonplatform.platform: Linux-5.15.133.1-microsoft-standard-WSL2-x86_64-with-glibc2.31
print("sys.maxsize > 2
32:", sys.maxsize > 232)
sys.maxsize > 2
32: True
print("platform.python_version:", platform.python_version())
platform.python_version: 3.9.2

import oracledb
print("oracledb.version:", oracledb.version)
oracledb.version: 2.0.1

  1. Is it an error or a hang or a crash?

  2. What error(s) or behavior you are seeing?

wrong connection type returned from acquire, after setting connectiontype as part of the create_pool call.

Note that this same code used to work in cx_oracle. (create_session)

  1. Does your application call init_oracle_client()?

yes

  1. Include a runnable Python script that shows the problem.
import oracledb

_CLAEROPool = None 
oracledb.init_oracle_client()
oracledb.defaults.fetch_lobs = False


class TestConnection(oracledb.Connection):
    pass


_CLAEROPool = oracledb.create_pool(min=1,
                                   max=3, 
                                   increment=1, 
                                   dsn="whatever",
                                   connectiontype=TestConnection)

with _CLAEROPool.acquire() as conn:
    print(type(conn))

Metadata

Metadata

Assignees

No one assigned

    Labels

    questionFurther information is requested

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions