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

SQL Anywhere 11.0.1 » SQL Anywhere Server - Programming » SQL Anywhere Data Access APIs » SQL Anywhere .NET 2.0 API reference » iAnywhere.Data.SQLAnywhere namespace (.NET 2.0) » SABulkCopyColumnMapping class » SABulkCopyColumnMapping constructors

 

SABulkCopyColumnMapping(Int32, Int32) constructor

Creates a new column mapping, using column ordinals to refer to source and destination columns.

Syntax
Visual Basic

Public Sub New( _
   ByVal sourceColumnOrdinal As Integer, _
   ByVal destinationColumnOrdinal As Integer _
)
C#

public  SABulkCopyColumnMapping(
   int sourceColumnOrdinal,
   int destinationColumnOrdinal
);
Parameters
  • sourceColumnOrdinal   The ordinal position of the source column within the data source. The first column in a data source has ordinal position zero.

  • destinationColumnOrdinal   The ordinal position of the destination column within the destination table. The first column in a table has ordinal position zero.

Remarks

Restrictions: The SABulkCopyColumnMapping class is not available in the .NET Compact Framework 2.0.

See also