Modified:
branches/5.2/MySql.Data/Provider/Source/StoredProcedure.cs
Log:
removed use of ToUpperInvariant since that doesn't work on CF
Modified: branches/5.2/MySql.Data/Provider/Source/StoredProcedure.cs
===================================================================
--- branches/5.2/MySql.Data/Provider/Source/StoredProcedure.cs 2008-05-07 15:48:48 UTC (rev 1287)
+++ branches/5.2/MySql.Data/Provider/Source/StoredProcedure.cs 2008-05-07 15:50:23 UTC (rev 1288)
@@ -123,7 +123,7 @@
int x = dtd.Length - 1;
while (x > 0 && (Char.IsLetterOrDigit(dtd[x]) || dtd[x] == ' '))
x--;
- return dtd.Substring(x).ToUpperInvariant();
+ return dtd.Substring(x).ToUpper(CultureInfo.InvariantCulture);
}
public override void Resolve()
| Thread |
|---|
| • Connector/NET commit: r1288 - branches/5.2/MySql.Data/Provider/Source | rburnett | 7 May |