Skip to content

MS Access Python 3 support and optimized ints

Compare
Choose a tag to compare
@mkleehammer mkleehammer released this 17 Feb 23:38
· 342 commits to master since this release

Issue #84 Previously all Python 3 longs were sent via SQL_BIGINT but Access does not support this so now SQL_INTEGER is used when possible. This is also a nice optimization for other drivers.

Also fixed #195 - Python 3 text and Python 2 unicode was always passed as SQL_WVARCHAR even if the encoding was set to something like UTF-8 that should be SQL_VARCHAR.