[pywin32-checkins] pywin32/win32/src odbc.cpp,1.14,1.15
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-02-27 12:01:00
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23473/src Modified Files: odbc.cpp Log Message: Fix [ 1258840 ] odbc - select 'bit' type returns str, not int and add a few extra tests while there... Index: odbc.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/odbc.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** odbc.cpp 22 Feb 2006 08:07:13 -0000 1.14 --- odbc.cpp 27 Feb 2006 12:00:57 -0000 1.15 *************** *** 1089,1092 **** --- 1089,1093 ---- switch(vtype) { + case SQL_BIT: case SQL_SMALLINT: case SQL_INTEGER: |