From: Date: June 17 2008 5:19pm Subject: Connector/NET commit: r1322 - in branches/5.1: . Driver/Source List-Archive: http://lists.mysql.com/commits/48012 X-Bug: 37406 Message-Id: <200806171519.m5HFJVYH002814@bk-internal.mysql.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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'. /// + DateTime = 12, + /// + ///Datetime The supported range is '1000-01-01 00:00:00' to + ///'9999-12-31 23:59:59'. + /// [Obsolete("The Datetime enum value is obsolete. Please use DateTime.")] Datetime = 12, - DateTime = 12, /// /// 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