-
-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
I use python version 3.11.7.
Steps to reproduce:
- Create virtual environment and activate it
python -m venv venv
source venv/bin/activate - Install firebird-driver:
pip install firebird-driver - Run the Firebird
5.0.3
sudo systemctl start firebird.service - Create python file and execute it:
import firebird.driver as fdb
if __name__ == '__main__':
with fdb.connect('localhost:employee', user='SYSDBA', password='masterkey') as conn:
with conn.cursor() as cursor:
with cursor.prepare('SELECT COUNT(*) FROM JOB WHERE 11 < ?') as stmt:
print(cursor.execute(stmt, (12,)).fetchone())
- See output:
(31,)
Ошибка сегментирования (образ памяти сброшен на диск)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels