Some dbapi implementations demand fetchmany() size arg as positional

Issue #505 resolved
J Pellerin created an issue

At least sqlite and mssql using odbc raise exceptions when their cursor.fetchmany() is called with a keyword arg, eg: cursor.fetchmany(size=2).

Attached is a patch including a simple test case for fetchmany and a change to pass the size arg through as positional.

Comments (2)

  1. Log in to comment