From: George Tasker Date: Mon, 16 Apr 2001 14:03:09 +0000 (+0000) Subject: Blob support fixes - still does not work, but getting there X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4a45223c970eabf6ba66347129627775935c90b3?ds=inline Blob support fixes - still does not work, but getting there git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9763 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/db.cpp b/src/common/db.cpp index eecd419a3b..218d94e777 100644 --- a/src/common/db.cpp +++ b/src/common/db.cpp @@ -751,10 +751,10 @@ bool wxDb::Open(const wxString &Dsn, const wxString &Uid, const wxString &AuthSt if (!getDataTypeInfo(SQL_VARBINARY,typeInfBlob)) return(FALSE); else - typeInfInteger.FsqlType = SQL_VARBINARY; + typeInfBlob.FsqlType = SQL_VARBINARY; } else - typeInfInteger.FsqlType = SQL_LONGVARBINARY; + typeInfBlob.FsqlType = SQL_LONGVARBINARY; //typeInfBlob.TypeName = "BLOB";