List:Commits« Previous MessageNext Message »
From:rburnett Date:July 27 2007 1:00pm
Subject:Connector/NET commit: r817 - in trunk: . VisualStudio
View as plain text  
Modified:
   trunk/CHANGES
   trunk/VisualStudio/MySqlDataObjectSupport.xml
Log:
Changed DDEX provider to use the core providers schema routines for   foreign keys and foreign key columns

Modified: trunk/CHANGES
===================================================================
--- trunk/CHANGES	2007-07-27 12:58:39 UTC (rev 816)
+++ trunk/CHANGES	2007-07-27 13:00:51 UTC (rev 817)
@@ -20,6 +20,8 @@
   - Added feature where bit columns that have the value 0 or 1 are returned as bool
   - Added Foreign Key Columns metadata collection
   - Reworked how foreign key metadata is collected to make it more robust and faster
+  - Changed DDEX provider to use the core providers schema routines for 
+    foreign keys and foreign key columns
 
 Version 5.1.2 - 6/12/2007
   - Fixed integration with the Website Administration Tool.  Before this fix, the test link

Modified: trunk/VisualStudio/MySqlDataObjectSupport.xml
===================================================================
--- trunk/VisualStudio/MySqlDataObjectSupport.xml	2007-07-27 12:58:39 UTC (rev 816)
+++ trunk/VisualStudio/MySqlDataObjectSupport.xml	2007-07-27 13:00:51 UTC (rev 817)
@@ -801,7 +801,9 @@
         </Property>
       </Properties>
       <Actions>
-        <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="MySql.Data.VisualStudio.MySqlDataObjectEnumerator" />
+        <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectEnumerator">
+          <Parameter value="Foreign Keys"/>
+        </Action>
       </Actions>
     </Type>
 
@@ -850,7 +852,6 @@
             </Concept>
           </Concepts>
         </Property>
-        <Property name="PositionInKey" type="System.Int64" itemName="POSITION_IN_UNIQUE_CONSTRAINT"/>
         <Property name="ReferencedColumnName" type="System.String" itemName="REFERENCED_COLUMN_NAME">
           <Concepts>
             <Concept name="ReferencedTableColumn" />
@@ -858,7 +859,9 @@
         </Property>
       </Properties>
       <Actions>
-        <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="MySql.Data.VisualStudio.MySqlDataObjectEnumerator" />
+        <Action name="Enumerate" guid="61CC0372-384D-42e5-9707-6D7C8DC5287A" handler="Microsoft.VisualStudio.Data.AdoDotNet.AdoDotNetObjectEnumerator">
+          <Parameter value="Foreign Key Columns"/>
+        </Action>
       </Actions>
     </Type>
 

Thread
Connector/NET commit: r817 - in trunk: . VisualStudiorburnett27 Jul