We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce181d4 commit 3a8fd85Copy full SHA for 3a8fd85
firebirdsql/fbcore.py
@@ -95,8 +95,12 @@ def fetch_generator(self):
95
if x.sqltype == SQL_TYPE_BLOB:
96
if not r[i]:
97
continue
98
- connection._op_open_blob(r[i], self.trans.trans_handle)
99
- (h, oid, buf) = connection._op_response()
+ connection._op_open_blob2(r[i], self.trans.trans_handle)
+ if (connection.accept_type & ptype_MASK)== ptype_lazy_send:
100
+ connection.lazy_response_count += 1
101
+ h = -1
102
+ else:
103
+ (h, oid, buf) = connection._op_response()
104
v = bs([])
105
n = 1 # 0,1:mora data 2:no more data
106
while n != 2:
0 commit comments