From: Date: October 9 2007 10:34pm Subject: Connector/NET commit: r1025 - in branches/5.0: . Driver/Source TestSuite/Source List-Archive: http://lists.mysql.com/commits/35234 X-Bug: 31185 Message-Id: <200710092034.l99KYWtp020832@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/NativeDriver.cs branches/5.0/TestSuite/Source/CharacterSetTests.cs Log: Fixed issue where column name metadata was not using the charset given on the connection string (Bug #31185) Modified: branches/5.0/CHANGES =================================================================== --- branches/5.0/CHANGES 2007-09-24 18:01:55 UTC (rev 1024) +++ branches/5.0/CHANGES 2007-10-09 20:34:31 UTC (rev 1025) @@ -7,6 +7,8 @@ (Bug #31090) - Fixed problem that prevented commands from being executed from the state change handler. Not sure why you would want to do this but... (bug #30964) + - Fixed issue where column name metadata was not using the charset given on the connection string + (Bug #31185) Version 5.0.8 8/16/2007 Modified: branches/5.0/Driver/Source/NativeDriver.cs =================================================================== --- branches/5.0/Driver/Source/NativeDriver.cs 2007-09-24 18:01:55 UTC (rev 1024) +++ branches/5.0/Driver/Source/NativeDriver.cs 2007-10-09 20:34:31 UTC (rev 1025) @@ -168,6 +168,7 @@ { base.Configure(connection); stream.MaxPacketSize = (ulong)maxPacketSize; + stream.Encoding = Encoding; } public override void Open() Modified: branches/5.0/TestSuite/Source/CharacterSetTests.cs =================================================================== --- branches/5.0/TestSuite/Source/CharacterSetTests.cs 2007-09-24 18:01:55 UTC (rev 1024) +++ branches/5.0/TestSuite/Source/CharacterSetTests.cs 2007-10-09 20:34:31 UTC (rev 1025) @@ -182,6 +182,25 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file