aio-libs / aioodbc

aioodbc - is a library for accessing a ODBC databases from the asyncio
Apache License 2.0
306 stars 59 forks source link

fast_executemany #423

Open YuriyTigiev opened 1 year ago

YuriyTigiev commented 1 year ago

Hello

Will aioodbc support fast_executemany method ?

jettify commented 1 year ago

You mean:

pyodbcCursor.fast_executemany = True

property on pyodbc cursor? If so should be trivial to add.

BezBartek commented 3 months ago

Any news on that? I am getting: AttributeError: 'AsyncAdapt_aioodbc_cursor' object has no attribute 'fast_executemany'

igorMIA commented 1 month ago

So far we can use this workaround to enable fast_executemany

cursor._impl.fast_executemany = True