List:Commits« Previous MessageNext Message »
From:rburnett Date:February 29 2008 4:32pm
Subject:Connector/NET commit: r1200 - in branches/5.2: . VisualStudio
View as plain text  
Modified:
   branches/5.2/CHANGES
   branches/5.2/VisualStudio/MySqlDataSourceInformation.cs
Log:
- Fixed problem where the TableAdapter wizard was no longer able to generate commands
  using stored procedures because of our change to using @ instead of ? (bug #34941)


Modified: branches/5.2/CHANGES
===================================================================
--- branches/5.2/CHANGES	2008-02-28 21:31:42 UTC (rev 1199)
+++ branches/5.2/CHANGES	2008-02-29 15:32:48 UTC (rev 1200)
@@ -3,7 +3,9 @@
   a profile that already existed.
 - Fixed problem where new parameter code prevented stored procedures from being
   altered in Visual Studio (bug #34940)
-  
+- Fixed problem where the TableAdapter wizard was no longer able to generate commands
+  using stored procedures because of our change to using @ instead of ? (bug #34941)
+    
 Version 5.2.1 - 2/27/2008
 - Tons of fixes in providers.  The actually work now.  :)
 - Fixed new parameter handling code so that procedures and functions now work 

Modified: branches/5.2/VisualStudio/MySqlDataSourceInformation.cs
===================================================================
--- branches/5.2/VisualStudio/MySqlDataSourceInformation.cs	2008-02-28 21:31:42 UTC (rev 1199)
+++ branches/5.2/VisualStudio/MySqlDataSourceInformation.cs	2008-02-29 15:32:48 UTC (rev 1200)
@@ -57,7 +57,7 @@
             AddProperty(SchemaSupported, true);
             AddProperty(SchemaSupportedInDml, true);
             AddProperty(SchemaSeparator, ".");
-            AddProperty(ParameterPrefix, "?");
+            AddProperty(ParameterPrefix, "@");
             AddProperty(ParameterPrefixInName, true);
             AddProperty(DefaultCatalog, null);
         } 

Thread
Connector/NET commit: r1200 - in branches/5.2: . VisualStudiorburnett29 Feb