(self, query, size, commit=True)
| 63 | return self._fetch(query, size=1, commit=commit) |
| 64 | |
| 65 | def fetchmany(self, query, size, commit=True): |
| 66 | return self._fetch(query=query, size=size, commit=commit) |
| 67 | |
| 68 | def fetchall(self, query, commit=True): |
| 69 | return self._fetch(query=query, size=-1, commit=commit) |
no test coverage detected