Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 » UltraLite - .NET Programming » UltraLite .NET 2.0 API reference » ULDataAdapter class

 

TableMappings property

Returns a collection that provides the master mapping between a source table and a System.Data.DataTable

Syntax
Visual Basic
Public Readonly Property TableMappings As DataTableMappingCollection
C#
public DataTableMappingCollection TableMappings { get;}
Property value

A collection of System.Data.Common.DataTableMapping objects providing the master mapping between source tables and System.Data.DataTables. The default value is an empty collection.

Remarks

When reconciling changes, the ULDataAdapter uses the System.Data.Common.DataTableMappingCollection collection to associate the column names used by the data source with the column names used by the System.Data.DataSet.

This is the strongly-typed version of System.Data.IDataAdapter.TableMappings.

See also