From: Date: June 17 2008 5:54pm Subject: Connector/NET commit: r1325 - in branches/5.1: . Driver/Source/docs List-Archive: http://lists.mysql.com/commits/48019 X-Bug: 37350 Message-Id: <200806171554.m5HFscCQ004909@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/docs/MySqlDataAdapter.xml Log: Improved documentation concerning autoincrement columns and the DataColumn class (bug #37350) Modified: branches/5.1/CHANGES =================================================================== --- branches/5.1/CHANGES 2008-06-17 15:41:09 UTC (rev 1324) +++ branches/5.1/CHANGES 2008-06-17 15:54:38 UTC (rev 1325) @@ -7,7 +7,8 @@ - Reversed order of Datetime and DateTime enums for MySqlDbType so that VB users won't get autocorrection to Datetime (bug #37406) - Uncommented access denied error enumeration value (bug #37398) - + - Improved documentation concerning autoincrement columns and the DataColumn class (bug #37350) + Version 5.1.6 - 5/7/08 - Fixed problem where parameters lists were not showing when you tried to alter a routine in server explorer. (bug #34359) Modified: branches/5.1/Driver/Source/docs/MySqlDataAdapter.xml =================================================================== --- branches/5.1/Driver/Source/docs/MySqlDataAdapter.xml 2008-06-17 15:41:09 UTC (rev 1324) +++ branches/5.1/Driver/Source/docs/MySqlDataAdapter.xml 2008-06-17 15:54:38 UTC (rev 1325) @@ -36,9 +36,10 @@ constructor. - Please be aware that the class in .NET 1.0 and 1.1 does not allow columns - with type of UInt16, UInt32, or UInt64 to be autoincrement columns. If you plan to use autoincremement - columns with MySQL, you should consider using signed integer columns. + Please be aware that the class allows only + Int16, Int32, and Int64 to have the AutoIncrement property set. + If you plan to use autoincremement columns with MySQL, you should consider + using signed integer columns.