List:Commits« Previous MessageNext Message »
From:rburnett Date:June 5 2009 10:49pm
Subject:Connector/NET commit: r1635 - in branches/6.0: . MySql.VisualStudio/DDEX
View as plain text  
Modified:
   branches/6.0/CHANGES
   branches/6.0/MySql.VisualStudio/DDEX/MySqlDataSourceInformation.cs
Log:
- fixed sql that is generated for commands in data set (bug #44512)
We were still reporting ? as our parameter marker so the sql that was editing in the query
builder has a space after the @ sign.  

Modified: branches/6.0/CHANGES
===================================================================
--- branches/6.0/CHANGES	2009-06-05 19:16:51 UTC (rev 1634)
+++ branches/6.0/CHANGES	2009-06-05 20:49:35 UTC (rev 1635)
@@ -13,6 +13,7 @@
 - fixed global Add New menu options with the Visual STudio integration
 - improved ad-hoc registration utility so that it handles VS 2005 and VS 2008 properly
 - added SunConnect registration
+- fixed sql that is generated for commands in data set (bug #44512)
 
 Version 6.0.3 - 4/22/09
 - fixed broken connection prompting

Modified: branches/6.0/MySql.VisualStudio/DDEX/MySqlDataSourceInformation.cs
===================================================================
--- branches/6.0/MySql.VisualStudio/DDEX/MySqlDataSourceInformation.cs	2009-06-05 19:16:51
UTC (rev 1634)
+++ branches/6.0/MySql.VisualStudio/DDEX/MySqlDataSourceInformation.cs	2009-06-05 20:49:35
UTC (rev 1635)
@@ -54,7 +54,7 @@
             AddProperty(SchemaSupported, true);
             AddProperty(SchemaSupportedInDml, true);
             AddProperty(SchemaSeparator, ".");
-            AddProperty(ParameterPrefix, "?");
+            AddProperty(ParameterPrefix, "@");
             AddProperty(ParameterPrefixInName, true);
             AddProperty(DefaultCatalog, null);
         } 

Thread
Connector/NET commit: r1635 - in branches/6.0: . MySql.VisualStudio/DDEXrburnett5 Jun 2009