Anthony Tuininga
Anthony Tuininga
Yes, Toad for Oracle is using the Oracle Client library (OCI) just like cx_Oracle is. It is doing something like what I did (see my previous comment which has a...
Ok. I'll leave this as an enhancement.
I was discussing a simplistic parser that simply examines the first few words of the SQL statements being executed -- after first stripping any leading spaces and comments. I have...
That's an interesting request and it seems perfectly reasonable to request, too. :-) I'll consider this for a future release.
@cjbj, yes, I was thinking of batching the inserts and giving the caller the chance to specify how many rows would be processed in each batch, with a reasonable default....
@meisn, what I think @cjbj is suggesting is that you would create your *own* version of executemany() in Python code which would accept the iterator. That method would then consume...
No problem. And I will certainly consider this enhancement request further when I get some time!
``ProgrammingError`` is only raised for errors like "positional and named binds cannot be intermixed". Almost all Oracle errors are raised as ``DatabaseError``. There are some that are raised as ``IntegrityError``...
True enough. If @cjbj has no objections I'll add it to cx_Oracle 8. It will cover the error numbers from -20000 to -20999.
No attempt has currently been made to transfer timezone information either to or from the database. This is primarily due to the fact that there is still no method in...