List:Commits« Previous MessageNext Message »
From:rburnett Date:October 9 2007 10:39pm
Subject:Connector/NET commit: r1026 - in branches/5.1: . Driver/Source TestSuite/Source
View as plain text  
Modified:
   branches/5.1/CHANGES
   branches/5.1/Driver/Source/NativeDriver.cs
   branches/5.1/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.1/CHANGES
===================================================================
--- branches/5.1/CHANGES	2007-10-09 20:34:31 UTC (rev 1025)
+++ branches/5.1/CHANGES	2007-10-09 20:39:05 UTC (rev 1026)
@@ -1,3 +1,7 @@
+Version 5.1.4
+  - Fixed issue where column name metadata was not using the charset given on the
connection string
+    (Bug #31185)
+      
 Version 5.1.3 - 9/19/2007
   - Fixed problem with using a stored procedure that takes a parameter as a select
routine
     for a TableAdapter wizard. (Bug #29098)

Modified: branches/5.1/Driver/Source/NativeDriver.cs
===================================================================
--- branches/5.1/Driver/Source/NativeDriver.cs	2007-10-09 20:34:31 UTC (rev 1025)
+++ branches/5.1/Driver/Source/NativeDriver.cs	2007-10-09 20:39:05 UTC (rev 1026)
@@ -166,6 +166,7 @@
         {
             base.Configure(conn);
             stream.MaxPacketSize = (ulong) maxPacketSize;
+			stream.Encoding = Encoding;
         }
 
         public override void Open()

Modified: branches/5.1/TestSuite/Source/CharacterSetTests.cs
===================================================================
--- branches/5.1/TestSuite/Source/CharacterSetTests.cs	2007-10-09 20:34:31 UTC (rev 1025)
+++ branches/5.1/TestSuite/Source/CharacterSetTests.cs	2007-10-09 20:39:05 UTC (rev 1026)
@@ -262,6 +262,25 @@
 
 
 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
 
 
\ No newline at end of file

Thread
Connector/NET commit: r1026 - in branches/5.1: . Driver/Source TestSuite/Sourcerburnett9 Oct