Aioodbc Versions Save

aioodbc - is a library for accessing a ODBC databases from the asyncio

v0.5.0

6 months ago

Changes

  • Added support for python 3.12
  • Bumped minimal supported version of pyodbc to 5.0.1
  • Dropped aiodocker related testing to unlock python 3.12

v0.4.1

6 months ago

Changes

  • Implemented cursor setinputsizes.
  • Implemented cursor fetchval.
  • Added more type annotations.
  • Added autocommit setter for cusror.

v0.4.0

1 year ago

Changes

  • Fixed compatibility with python 3.9+.
  • Removed usage of explicit loop parameter.
  • Added default read size parameter for cursor.
  • Updated tests and CI scripts.
  • Code base formatted with black.

v0.3.3

4 years ago

Changes

  • Parameter echo passed properly in cursor #185
  • Close bad connections before returning back to pool #195

v0.3.2

5 years ago

Changes

  • Added basic documentation for after_created and ThreadPoolExecutor #176 (thanks @AlexHagerman)
  • Cursor/connection context managers now rollback transaction on error, otherwise commit if autocommit=False #178 (thanks @julianit)

v0.3.1

6 years ago

Changes

  • Add after_create hook for connection configuration (thanks @lanfon72)

v0.3.0

6 years ago

Changes

  • Added optional pool connections recycling #167 (thanks @drpoggi)

v0.2.0

6 years ago

Changes

  • Fixed Cursor.execute returns a pyodbc.Cursor instead of itself #114
  • Fixed __aiter__ to not be awaitable for python>=3.5.2 #113
  • Tests now using aiodocker #106

v0.1.0

7 years ago

Changes

  • Fixed project version

v0.0.4

7 years ago

Changes

  • Improved mysql tests