Anthony Tuininga

Results 351 comments of Anthony Tuininga

The problem in this case lies in your code. You are closing the connection while activity may still be ongoing. That's the race condition: whether the closing of the database...

Yeah, that would make sense....but unfortunately the subscriptions live independently of the connections -- if they are pooled. So the subscription is tied to a standalone connection or to a...

What I have discovered is that everything works as expected with numeric timezone data (-05:00 instead of US/Central, for example). The thin driver doesn't handle named time zones properly either...

As I understand it, this syntax is required for Python 3.6 support -- which is less capable. What tool are you using to give you the type checking errors? If...

Thanks, @troyswanson, for the report and for the suggested fix! We will take a look at this and integrate the changes internally after some testing.

Included in python-oracledb 1.1.1 which was just released.

Thanks for the detailed information. We will consider these requests! In the meantime, one option for you is to use the subprocess module to actually make the call to `init_oracle_client()`....

Looking into this, I think a small tweak is needed because pool connection creation is deferred, possibly indefinitely (when `min=0`). So this is what I intend to implement: - a...

I've created a patch to support this. If you are able to build and test, that would be appreciated! Thanks.

Included in python-oracledb 1.1.1 which was just released.