Skip to content

Commit be6310b

Browse files
committed
fix the bug
1 parent c703e87 commit be6310b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/sqlutilpy/sqlutil.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -356,14 +356,15 @@ def get(query,
356356
if nrec == 0:
357357
typeCodes = [_tmp.type_code for _tmp in desc]
358358
colNames = [_tmp.name for _tmp in cur.description]
359-
if no_results:
360-
dtype = __getDType([None] * len(typeCodes),
361-
typeCodes, strLength)
362359

363360
# No more data
364361
if no_results:
362+
dtype = __getDType([None] * len(typeCodes), typeCodes,
363+
strLength)
365364
break
366365

366+
dtype = __getDType(tups[0], typeCodes, strLength)
367+
367368
# Send the new batch for conversion
368369
qIn.put(tups)
369370

0 commit comments

Comments
 (0)