Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/dbspecific.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#define SQL_DB2_DECFLOAT -360 // IBM DB/2 DECFLOAT type
#define SQL_DB2_XML -370 // IBM DB/2 XML type
#define SQL_SS_TIME2 -154 // SQL Server 2008 time type
#define SQL_DB2_BLOB -98 // IBM DB/2 BLOB type

struct SQL_SS_TIME2_STRUCT
{
Expand Down
1 change: 1 addition & 0 deletions src/getdata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@ PyObject* GetData(Cursor* cur, Py_ssize_t iCol)
case SQL_BINARY:
case SQL_VARBINARY:
case SQL_LONGVARBINARY:
case SQL_DB2_BLOB:
return GetBinary(cur, iCol);

case SQL_DECIMAL:
Expand Down