You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the db(query).iterselect(), a call is made in pydal/objects.py to "self.cursor._fetchone()" however "._fetchone()" does not exist in MySQLdb.cursors.Cursor.
When using the db(query).iterselect(), a call is made in pydal/objects.py to "self.cursor._fetchone()" however "._fetchone()" does not exist in MySQLdb.cursors.Cursor.
It should be MySQLdb.cursors.Cursor.fetchone() (http://mysql-python.sourceforge.net/MySQLdb-1.2.2/public/MySQLdb.cursors.CursorStoreResultMixIn-class.html#fetchone).
This results in an error when called currently:
The text was updated successfully, but these errors were encountered: