Skip to content

Tags: ZeusbasePython/pyodbc

Tags

3.0.10

Toggle 3.0.10's commit message
Fix for 64-bit int problems and decimal problems.

Fixes mkleehammer#42

3.0.9

Toggle 3.0.9's commit message
Fix Windows compile error.

3.0.8

Toggle 3.0.8's commit message
Assume unixODBC on OS X

3.0.7

Toggle 3.0.7's commit message
Added support for pickling Row objects.

3.0.6

Toggle 3.0.6's commit message
Issue 239: Memory error reading SQL Server XML 4K

3.0.5

Toggle 3.0.5's commit message
fix: Function sequence error with prepared execute, SQLTables, same e…

…xecute. (Lost fix)

This was fixed in 2.1.12 and lost during the Python 3 conversion.

The saved prepared statement was not cleaned up when a SQLTables or similar function was used.
If the next execute used the same SQL, pyodbc did not call SQLPrepare.
(cherry picked from commit 7fdec2f)

3.0.4

Toggle 3.0.4's commit message
Issue 227: Fix Python 2.5 compatability

3.0.3

Toggle 3.0.3's commit message
Issue 178: Fixed compilation issues with 4.6.2

Removed deprecated Row_slice.  The sequence structure changed this from an actual function
pointer to a void pointer.  GCC 4.6.2 would not allow the assignment of Row_slice to void*.
This may not build under 2.5.

Also eliminated a bunch of casts to see if newer GCC would uncover other issues.

3.0.2

Toggle 3.0.2's commit message
Issue 198: Added binaryNull object for binding NULL binary parameters.

3.0.1

Toggle 3.0.1's commit message
Single source base for Python 2 and 3