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

SQL Anywhere 10.0.1 » SQL Anywhere Server - Programming » SQL Anywhere .NET 2.0 API Reference » SABulkCopy class » SABulkCopy constructors

SABulkCopy(String) constructor Next Page

SABulkCopy(String, SABulkCopyOptions) constructor


Initializes an SABulkCopy object.

Syntax

Visual Basic

Public Sub New( _
ByVal connectionString As String, _
ByVal copyOptions As SABulkCopyOptions _
)

C#

public SABulkCopy(
string connectionString,
SABulkCopyOptions copyOptions
);

Parameters
Remarks

This syntax opens a connection during WriteToServer using connectionString. The connection is closed at the end of WriteToServer. The copyOptions parameter has the effects described above.

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

See also