Ik denk dat je verbinding moet maken met cursorclass = MySQLdb.cursors.SSCursor
:
MySQLdb.connect(user="user",
passwd="password",
db="mydb",
cursorclass = MySQLdb.cursors.SSCursor
)
De standaardcursor haalt alle gegevens in één keer op, zelfs als u fetchall
niet gebruikt .
Bewerken:SSCursor
of een andere cursorklasse die resultatensets aan de serverzijde ondersteunt - controleer de moduledocumenten op MySQLdb.cursors
.