pyfirebirdsql
pyfirebirdsql copied to clipboard
Python DBAPI module for FirebirdSQL
create or alter procedure TEST_ERROR_DURING_FETCH returns ( MSG varchar(200)) AS declare variable dbpath lib100; declare variable dbpass lib100; begin msg = 'oupsss'; suspend; exception raiseexception('bug'); end for exemple if you...
Philippe Makowski requested one more thing on todo list : implement Python Database API Specification v2.0 Two-Phase Commit Extensions see http://www.python.org/dev/peps/pep-0249/ http://article.gmane.org/gmane.comp.db.firebird.python/75/
Hello @nakagami ! Would you kindly help me please to find the reason for the issue that occurs when I trying to initialize event_conduit (after successfully db connection), module event_conduit.py...
No longer works without `passlib`. https://github.com/nakagami/pyfirebirdsql/compare/REL_1_2_5...REL_1_2_6#diff-d78baff5db7c62238ccfd1be0dd570c7dc8cde9f574a32367d5c095a698ba998R75 https://github.com/nakagami/pyfirebirdsql/compare/REL_1_2_5...REL_1_2_6#diff-4d4623fa054c77b9ad2dd3b911da2a95b226089c97734658a7f788c82fbcfe23R38 ```console File "C:\Users\user\.local\pipx\venvs\venv\Lib\site-packages\firebirdsql\__init__.py", line 94, in connect conn._initialize_socket() File "C:\Users\user\.local\pipx\venvs\venv\Lib\site-packages\firebirdsql\fbcore.py", line 989, in _initialize_socket self._op_attach(self.timezone) File "C:\Users\user\.local\pipx\venvs\venv\Lib\site-packages\firebirdsql\wireprotocol.py", line 493, in _op_attach enc_pass =...
Hi, sorry to bother you, but I've encountered an issue after starting to use the library (thanks a lot for your work!). I am currently using Firebird 2.5 (I know...
related to #109
Transaction commit in firebirdsql/aio/fbcore.py/AsyncConnection in the __exit__() method of context manager is not awaited. Need to implement asynchronous context manager with aenter() and aexit() methods in AsyncConnection. This is the...
https://github.com/FirebirdSQL/jaybird/commit/86a9f82267264dc0d461d72913ff6e7f9c197e35 PROTOCOL_VERSION over 13
### Description I encountered a `KeyError: 0` when trying to read columns with `TIME WITH TIME ZONE` or `TIMESTAMP WITH TIME ZONE` types using the `firebirdsql` library. The error occurs...