We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python 3.6 aioodbc 0.1.0 Windows SQLite
The following just can't work
async def example(): async aioodbc.connect(...) as conn, conn.cursor() as cursor: async for row in await cursor.execute("SELECT * FROM some_table"): print(row)
Currently for it to work I have to use two lines
async def example(): async aioodbc.connect(...) as conn, conn.cursor() as cursor: cursor.execute("SELECT * FROM some_table") async for row in await cursor: print(row)
or not use async for loop but that defeats the purpose of async.
The text was updated successfully, but these errors were encountered:
good catch fixed!
Sorry, something went wrong.
new version released https://pypi.python.org/pypi/aioodbc
No branches or pull requests
Python 3.6
aioodbc 0.1.0
Windows
SQLite
The following just can't work
Currently for it to work I have to use two lines
or not use async for loop but that defeats the purpose of async.
The text was updated successfully, but these errors were encountered: