From: Date: March 26 2007 9:22pm Subject: Connector/NET commit: r648 - branches/5.0/Driver/Source List-Archive: http://lists.mysql.com/commits/22959 X-Bug: 26147 Message-Id: <200703261922.l2QJMRug003622@bk-internal.mysql.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Modified: branches/5.0/Driver/Source/MySqlConnectionStringBuilder.cs Log: Bug #26147 "User Id" problem during connection creation We were not doing a culture invariant .ToLower() on the connection string key. This caused a problem in certain cultures like Turkish. Modified: branches/5.0/Driver/Source/MySqlConnectionStringBuilder.cs =================================================================== --- branches/5.0/Driver/Source/MySqlConnectionStringBuilder.cs 2007-03-22 21:16:36 UTC (rev 647) +++ branches/5.0/Driver/Source/MySqlConnectionStringBuilder.cs 2007-03-26 19:22:27 UTC (rev 648) @@ -673,7 +673,7 @@ private Keyword GetKey(string key) { - string lowerKey = key.ToLower(); + string lowerKey = key.ToLower(CultureInfo.InvariantCulture); switch (lowerKey) { case "uid":