List:Commits« Previous MessageNext Message »
From:rburnett Date:May 23 2007 3:22pm
Subject:Connector/NET commit: r733 - trunk/VisualStudio
View as plain text  
Modified:
   trunk/VisualStudio/MySqlDataObjectSupport.xml
Log:
Fixed problem that caused errors when working with stored routines.  The problem was that we had removed type as part of the id structure and the code was depending on that.  That change restores it.

Modified: trunk/VisualStudio/MySqlDataObjectSupport.xml
===================================================================
--- trunk/VisualStudio/MySqlDataObjectSupport.xml	2007-05-23 15:20:41 UTC (rev 732)
+++ trunk/VisualStudio/MySqlDataObjectSupport.xml	2007-05-23 15:22:05 UTC (rev 733)
@@ -534,11 +534,16 @@
             <Concept name="Identifier1"/>
           </Concepts>
         </Part>
-        <Part name="Name" itemName="SPECIFIC_NAME">
+        <Part name="Type" itemName="ROUTINE_TYPE">
           <Concepts>
             <Concept name="Identifier2"/>
           </Concepts>
         </Part>
+        <Part name="Name" itemName="SPECIFIC_NAME">
+          <Concepts>
+            <Concept name="Identifier3"/>
+          </Concepts>
+        </Part>
       </Identifier>
 
       <Restrictions>
@@ -619,13 +624,9 @@
         </Part>
       </Identifier>
       <Properties>
-        <Property name="Ordinal" type="System.Int64" itemName="ORDINAL_POSITION">
+        <Property name="Ordinal" type="System.Int32" itemName="ORDINAL_POSITION">
           <Concepts>
-            <Concept name="Ordinal">
-              <Conversion>
-                <ChangeType type="System.Int32"/>
-              </Conversion>
-            </Concept>
+            <Concept name="Ordinal"/>
           </Concepts>
         </Property>
         <Property name="SystemType" type="System.String" itemName="DATA_TYPE">
@@ -644,16 +645,12 @@
         </Property>
         <Property name="Flags" type="System.String" itemName="FLAGS"/>
         <Property name="CharacterSet" type="System.String" itemName="CHARACTER_SET" />
-        <Property name="Length" type="System.Int64" itemName="CHARACTER_MAXIMUM_LENGTH">
+        <Property name="Length" type="System.Int32" itemName="CHARACTER_MAXIMUM_LENGTH">
           <Concepts>
-            <Concept name="Length">
-              <Conversion>
-                <ChangeType type="System.Int32"/>
-              </Conversion>
-            </Concept>
+            <Concept name="Length"/>
           </Concepts>
         </Property>
-        <Property name="Precision" type="System.Int64" itemName="NUMERIC_PRECISION">
+        <Property name="Precision" type="System.Byte" itemName="NUMERIC_PRECISION">
           <Concepts>
             <Concept name="Precision">
               <Conversion>
@@ -662,13 +659,9 @@
             </Concept>
           </Concepts>
         </Property>
-        <Property name="Scale" type="System.Int64" itemName="NUMERIC_SCALE">
+        <Property name="Scale" type="System.Int32" itemName="NUMERIC_SCALE">
           <Concepts>
-            <Concept name="Scale">
-              <Conversion>
-                <ChangeType type="System.Int32"/>
-              </Conversion>
-            </Concept>
+            <Concept name="Scale"/>
           </Concepts>
         </Property>
         <Property name="Mode" type="System.String" itemName="PARAMETER_MODE"/>

Thread
Connector/NET commit: r733 - trunk/VisualStudiorburnett23 May