We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0470c71 commit 37d92b1Copy full SHA for 37d92b1
src/firebird/driver/types.py
@@ -402,6 +402,29 @@ class StmtInfoCode(IntEnum):
402
EXEC_PATH_BLR_BYTES = 31
403
EXEC_PATH_BLR_TEXT = 32
404
405
+class ReqInfoCode(IntEnum):
406
+ """Request information (isc_info_*) codes.
407
+ """
408
+ INFO_STATE = 8
409
+ MESSAGE_NUMBER = 9
410
+ MESSAGE_SIZE = 10
411
+ SELECT_COUNT = 13
412
+ INSERT_COUNT = 14
413
+ UPDATE_COUNT = 15
414
+ DELETE_COUNT = 16
415
+
416
417
+class ReqState(IntEnum):
418
+ """Request states(isc_info_req_*) codes.
419
420
+ ACTIVE = 2
421
+ INACTIVE = 3
422
+ SEND = 4
423
+ RECEIVE = 5
424
+ SELECT = 6
425
+ SQL_STALL = 7
426
427
428
class ResultSetInfoCode(IntEnum):
429
"""Result set information codes.
430
"""
0 commit comments