pypyodbc
pypyodbc copied to clipboard
pypyodbc is a pure Python cross platform ODBC interface module (pyodbc compatible as of 2017)
```txt Segmentation fault (core dumped) ``` while using ThreadPoolExecutor it does not allow to execute the code on multiple thread where as it execute smoothly on single thread
Hi, Python = 3.8.10 pypyodbc = 1.3.6 Database = MS SQL Server 2019 Column type > [Message] [nvarchar](4000) NULL I have column Message (type is above) and sometimes i receive...
It seems that the present code is compatible up to Python2. Do you have any plan for adding support for Python3?
I'm trying to switch from pyodbc to pypyodbc and it seems that pypyodbc has problems when trying to insert empty strings as parameters. Here is an example of the sql...
pypyodbc converts column names in cursor's `description` to lowercase by default for some reason. In the previously released versions (up to 1.3.5) [you had to do](https://stackoverflow.com/q/36314255/1026) this to opt out...
reminder for myself: take a look if code at: https://github.com/jiangwen365/pypyodbc/compare/sqlbindcol and unmerged pulls at https://github.com/jiangwen365/pypyodbc/pulls?q=is%3Apr+is%3Aunmerged to see if there is something useful to merge.
I am trying to use this package inside a Pyodide build, but unfortunately Pyodide requires a pure wheel (e.g. `pypyodbc-1.3.6-py3-none-any.whl`). I was able to clone and build the pure wheel...
the newer python installation no longer include the distutils package in its standard library. this may be the reason that 'python -m pip install pypyodbc' no longer works... it always...