标签:防止 数据量 code lan bre int while 重复 sql
self.cr.execute(sql, )
# res = self.cr.fetchmany(1000)
while True:
res = self.cr.fetchmany(1000)
print(len(res),res)
if not res:
break
return res
fetchall()
类似,只是可以读取指定行数的数据量,当指定数据量小于实际数据量时,可以重复读取python 数据库游标,fetchmany(int),边取数据边处理,防止数量量太大撑爆内存
标签:防止 数据量 code lan bre int while 重复 sql
原文地址:https://www.cnblogs.com/qianxunman/p/13983855.html