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

SQL Anywhere 10.0.1 » UltraLite - .NET Programming » UltraLite .NET 2.0 API Reference » ULBulkCopy class » ULBulkCopy constructors

ULBulkCopy(ULConnection) constructor Next Page

ULBulkCopy(String) constructor


Initializes a ULBulkCopy object with the specified connection string.

Syntax

Visual Basic

Public Sub New( _
ByVal connectionString As String _
)

C#

public ULBulkCopy(
string connectionString
);

Parameters
Remarks

This syntax opens a connection during WriteToServer using connectionString. The connection is closed at the end of WriteToServer.

The connection string can be supplied using a ULConnectionParms object.

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

Implements: System.IDisposable

See also