Modified:
trunk/CHANGES
trunk/MySql.VisualStudio/DDEX/MySqlDataViewSupport.xml
trunk/MySql.VisualStudio/Nodes/StoredProcedureNode.cs
Log:
- fixed problem where stored procedures and functions could not be deleted from server explorer
Modified: trunk/CHANGES
===================================================================
--- trunk/CHANGES 2009-04-03 19:10:52 UTC (rev 1551)
+++ trunk/CHANGES 2009-04-03 19:11:43 UTC (rev 1552)
@@ -1,5 +1,6 @@
Version 6.0.2
- fixed registration problem with Visual studio (bug #44064)
+- fixed problem where stored procedures and functions could not be deleted from server explorer
Version 6.0.1
- Fixed problem with the foreign key columns schema collection
Modified: trunk/MySql.VisualStudio/DDEX/MySqlDataViewSupport.xml
===================================================================
--- trunk/MySql.VisualStudio/DDEX/MySqlDataViewSupport.xml 2009-04-03 19:10:52 UTC (rev 1551)
+++ trunk/MySql.VisualStudio/DDEX/MySqlDataViewSupport.xml 2009-04-03 19:11:43 UTC (rev 1552)
@@ -993,7 +993,9 @@
</Properties>
<CommandBindings defaultCommand="AlterStoredProcedure">
<CommandBinding name="AlterStoredProcedure" guid="B87CB51F-8A01-4c5e-BF3E-5D0565D5397D" cmdid="289" handler="MySql.Data.VisualStudio.MySqlDataViewCommandHandler" />
- <CommandBinding name="DeleteProcedure" guid="B87CB51F-8A01-4c5e-BF3E-5D0565D5397D" cmdid="337" handler="MySql.Data.VisualStudio.MySqlDataViewCommandHandler" />
+ <CommandBinding name="DropProcedure" guid="5efc7975-14bc-11cf-9b2b-00aa00573819" cmdid="17" handler="MySql.Data.VisualStudio.MySqlDataViewCommandHandler">
+ <Parameter value="StoredProcedure"/>
+ </CommandBinding>
<!-- global data menus -->
<CommandBinding name="NewQuery" guid="501822E1-B5AF-11d0-B4DC-00A0C91506EF" cmdid="13608" handler="884DD964-5327-461f-9F06-6484DD540F8F">
<Parameter value="NewQuery"/>
Modified: trunk/MySql.VisualStudio/Nodes/StoredProcedureNode.cs
===================================================================
--- trunk/MySql.VisualStudio/Nodes/StoredProcedureNode.cs 2009-04-03 19:10:52 UTC (rev 1551)
+++ trunk/MySql.VisualStudio/Nodes/StoredProcedureNode.cs 2009-04-03 19:11:43 UTC (rev 1552)
@@ -27,7 +27,7 @@
public StoredProcedureNode(DataViewHierarchyAccessor hierarchyAccessor, int id, bool isFunc) :
base(hierarchyAccessor, id)
{
- NodeId = isFunc ? "storedfunction" : "StoredProcedure";
+ NodeId = isFunc ? "StoredFunction" : "StoredProcedure";
isFunction = isFunc;
NameIndex = 3;
editor = new TextBufferEditor();
| Thread |
|---|
| • Connector/NET commit: r1552 - in trunk: . MySql.VisualStudio/DDEX MySql.VisualStudio/Nodes | rburnett | 3 Apr |