DataTableMapping Constructor (String^, String^, array<DataColumnMapping^>^)

 

Initializes a new instance of the DataTableMapping class when given a source table name, a DataTable name, and an array of DataColumnMapping objects.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

public:
DataTableMapping(
	String^ sourceTable,
	String^ dataSetTable,
	array<DataColumnMapping^>^ columnMappings
)

Parameters

sourceTable
Type: System::String^

The case-sensitive source table name from a data source.

dataSetTable
Type: System::String^

The table name from a DataSet to map to.

columnMappings
Type: array<System.Data.Common::DataColumnMapping^>^

An array of DataColumnMapping objects.

The following example creates a DataTableMapping object, sets some of its properties, and copies its ColumnMappings to an array. This example assumes that a DataColumnMappingCollection has been created.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: