List:Commits« Previous MessageNext Message »
From:pharvey Date:October 3 2006 2:57pm
Subject:Connector/ODBC 5 commit: r569 - trunk/SDK/MYSQLPlus/Library
View as plain text  
Modified:
   trunk/SDK/MYSQLPlus/Library/MConnection.cpp
Log:
FIX: Some handling of unknown connection attribute 30002 was added during last fix. This
was not needed, it seems, to make MS Access happy so it is, once again, an error to
set/get this unknown connection attribute.

Modified: trunk/SDK/MYSQLPlus/Library/MConnection.cpp
===================================================================
--- trunk/SDK/MYSQLPlus/Library/MConnection.cpp	2006-10-03 14:51:48 UTC (rev 568)
+++ trunk/SDK/MYSQLPlus/Library/MConnection.cpp	2006-10-03 14:57:20 UTC (rev 569)
@@ -270,10 +270,10 @@
                 \internal MYODBC RULE
 
                 MS Access tries to get/set this unknown attribute. Most drivers,
including C/ODBC v3
-                ignore it and return SQL_SUCCESS. We do same as part of effort to resolve
some issues
-                with MS Access.
+                ignore it and return SQL_SUCCESS. 
+
+                We take exception to this.
             */
-            break;
 
         default:
             MYODBCDbgReturn( getDiagnostic()->doAppend( MDiagnostic::DIA_HY092 ) );
@@ -489,10 +489,10 @@
                 \internal MYODBC RULE
 
                 MS Access tries to get/set this unknown attribute. Most drivers,
including C/ODBC v3
-                ignore it and return SQL_SUCCESS. We do same as part of effort to resolve
some issues
-                with MS Access.
+                ignore it and return SQL_SUCCESS. 
+
+                We take exception to this.
             */
-            break;
 
         default:
             MYODBCDbgReturn( getDiagnostic()->doAppend( MDiagnostic::DIA_HY092 ) );

Thread
Connector/ODBC 5 commit: r569 - trunk/SDK/MYSQLPlus/Librarypharvey3 Oct