pypyodbc
pypyodbc copied to clipboard
A pure Python Cross Platform ODBC interface module
The pypi package pypyodbc-1.3.5.2.zip still has version 1.3.4 referenced in it's setup.py which leads to following warning message when upgrading with pip: `Requested pypyodbc==1.3.5.2 from https://pypi.python.org/packages/ea/48/bb5412846df5b8f97d42ac24ac36a6b77a802c2778e217adc0d3ec1ee7bf/pypyodbc-1.3.5.2.zip#md5=9f262beb1aebf7556fce26cad2c5d462 (from -r requirements.txt (line...
With pyodbc I can use the following to connection Azure SQL Server: ``` def get_connection(connection_string, access_token): exptoken = b"" for i in access_token: exptoken += bytes({i}) exptoken += bytes(1) tokenstruct...
Is there a wheel file for Python37? I am trying to install pypyodbc after finding out that it wasn't a typo meaning pyodbc which I installed. I am now looking...
When working with a MS SQL 2008 database through ODBC, all-caps column names in a row must be accessed in lowercase to yield the correct information. ``` python for row...
I had a script that was previously working to connect to a Filemaker instance using the filemaker ODBC driver for windows (ver 13.2.14) I recently re-tried it and it threw...
Hi: I recently saw an increase on issues posting and feel of usage of this library, I had no time to help a lot making pull request, code checking/ unit...
Hello, whenever trying to execute an INSERT statement with a text of 250 characters I get this error: > line 1605, in execute > param_buffer.value = c_char_buf > ValueError: string...
I am using pypyodbc from within a specialized called Motionbuilder, and recently I've been getting this strange error: `pypyodbc.Error: (u'HY090', u'[HY090] [Microsoft][ODBC Driver Manager] Invalid string or buffer length')` It...
Not sure what has broken the pypyodbc library, but currently the 3.7.4 release of python is not working with the code base. When running the code I get the following...
## Summary Setting `row_type_callable` to `NamedTupleRow` causes data retrieval to fail in the constructor for the local `Row` class inside the global `NamedTupleRow` function. ## Repro Here's my repro case...