MySQLdb
カーソルクラスは、イテレータプロトコル
を実装します。 、したがって、これを簡単に行うことができます:
cursor.execute(sql)
for row in cursor:
print row
...
def __iter__(self):
return iter(self.fetchone, None)
MySQLdb
カーソルクラスは、イテレータプロトコル
を実装します。 、したがって、これを簡単に行うことができます:
cursor.execute(sql)
for row in cursor:
print row
...
def __iter__(self):
return iter(self.fetchone, None)