From: Date: March 27 2007 4:52pm Subject: Connector/NET commit: r649 - in branches/5.0: . Driver/Source List-Archive: http://lists.mysql.com/commits/23024 X-Bug: 27240 Message-Id: <200703271452.l2REqZf0031017@bk-internal.mysql.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Modified: branches/5.0/CHANGES branches/5.0/Driver/Source/MySqlConnectionStringBuilder.cs Log: Bug #27240 Property value characterset not retrieved/fetched in conn wizard Added DisplayName attribute to the CharacterSet property so it will display properly and so that it will set properly. Modified: branches/5.0/CHANGES =================================================================== --- branches/5.0/CHANGES 2007-03-26 19:22:27 UTC (rev 648) +++ branches/5.0/CHANGES 2007-03-27 14:52:34 UTC (rev 649) @@ -4,6 +4,8 @@ ---------- Bug #27269 MySqlConnection.Clone does not mimic SqlConnection.Clone behaviour Bug #27289 Transaction is not rolledback when connection close + Bug #26147 "User Id" problem during connection creation + Bug #27240 Property value characterset not retrieved/fetched in conn wizard Other changes ------------- Modified: branches/5.0/Driver/Source/MySqlConnectionStringBuilder.cs =================================================================== --- branches/5.0/Driver/Source/MySqlConnectionStringBuilder.cs 2007-03-26 19:22:27 UTC (rev 648) +++ branches/5.0/Driver/Source/MySqlConnectionStringBuilder.cs 2007-03-27 14:52:34 UTC (rev 649) @@ -364,6 +364,7 @@ /// Gets or sets the character set that should be used for sending queries to the server. /// #if !PocketPC && !MONO + [DisplayName("Character Set")] [Category("Advanced")] [Description("Character set this connection should use")] #endif