]> git.saurik.com Git - wxWidgets.git/commitdiff
Blob support fixes - still does not work, but getting there
authorGeorge Tasker <gtasker@allenbrook.com>
Mon, 16 Apr 2001 14:03:09 +0000 (14:03 +0000)
committerGeorge Tasker <gtasker@allenbrook.com>
Mon, 16 Apr 2001 14:03:09 +0000 (14:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9763 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/db.cpp

index eecd419a3bc7eb10c8f72797e10bb909afd2cee5..218d94e777208d6711e9cbd55c1ec598056b6a24 100644 (file)
@@ -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";