List:Commits« Previous MessageNext Message »
From:rburnett Date:June 17 2008 3:19pm
Subject:Connector/NET commit: r1322 - in branches/5.1: . Driver/Source
View as plain text  
Modified:
   branches/5.1/CHANGES
   branches/5.1/Driver/Source/MysqlDefs.cs
Log:
Reversed order of Datetime and DateTime enums for MySqlDbType so that VB users won't get autocorrection to Datetime (bug #37406)


Modified: branches/5.1/CHANGES
===================================================================
--- branches/5.1/CHANGES	2008-06-12 16:48:25 UTC (rev 1321)
+++ branches/5.1/CHANGES	2008-06-17 15:19:30 UTC (rev 1322)
@@ -4,6 +4,8 @@
  - Fixed problem with pooling code where connections pooled from the pool were added
    twice to the in use pool.  This would cause a semaphore full exception
    when an attempt is made to release them back to the pool (bug #36688)
+ - Reversed order of Datetime and DateTime enums for MySqlDbType so that VB users won't get
+   autocorrection to Datetime (bug #37406)
 
 Version 5.1.6 - 5/7/08
  - Fixed problem where parameters lists were not showing when you tried to alter a routine 

Modified: branches/5.1/Driver/Source/MysqlDefs.cs
===================================================================
--- branches/5.1/Driver/Source/MysqlDefs.cs	2008-06-12 16:48:25 UTC (rev 1321)
+++ branches/5.1/Driver/Source/MysqlDefs.cs	2008-06-17 15:19:30 UTC (rev 1322)
@@ -162,9 +162,13 @@
         ///DateTime The supported range is '1000-01-01 00:00:00' to 
         ///'9999-12-31 23:59:59'.
         ///</summary>
+        DateTime = 12,
+        ///<summary>
+        ///Datetime The supported range is '1000-01-01 00:00:00' to 
+        ///'9999-12-31 23:59:59'.
+        ///</summary>
         [Obsolete("The Datetime enum value is obsolete.  Please use DateTime.")]
         Datetime = 12,
-        DateTime = 12,
         /// <summary>
         /// A year in 2- or 4-digit format (default is 4-digit). The 
         /// allowable values are 1901 to 2155, 0000 in the 4-digit year 

Thread
Connector/NET commit: r1322 - in branches/5.1: . Driver/Sourcerburnett17 Jun