cur.fetchmany()
を使用する必要があります 代わりに、arraysise(256)で定義された行のチャンクをフェッチします
Pythonコード:
def chunks(cur): # 256
global log, d
while True:
#log.info('Chunk size %s' % cur.arraysize, extra=d)
rows=cur.fetchmany()
if not rows: break;
yield rows
次に、forループで処理を行います;
for i, chunk in enumerate(chunks(cur)):
for row in chunk:
#Process you rows here