DataTableMappingCollection Class
A collection of DataTableMapping objects. This class cannot be inherited.
Assembly: System.Data (in System.Data.dll)
The following example uses an OleDbDataAdapter to Add DataTableMapping objects to its TableMappings collection, and then displays a list of those mapped source tables. This example assumes that an OleDbDataAdapter has already been created.
Public Sub ShowTableMappings() ' ... ' create adapter ' ... adapter.TableMappings.Add("Categories", "DataCategories") adapter.TableMappings.Add("Orders", "DataOrders") adapter.TableMappings.Add("Products", "DataProducts") Dim message As String = "Table Mappings:" & ControlChars.Cr Dim i As Integer For i = 0 To adapter.TableMappings.Count - 1 message &= i.ToString() & " " _ & adapter.TableMappings(i).ToString() & ControlChars.Cr Next i Console.WriteLine(message) End Sub
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.