Aracılığıyla paylaş


BulkInsertTask Oluşturucusu

Yeni bir başlatır örnek , BulkInsertTask WalkTree

Ad Alanı:  Microsoft.SqlServer.Dts.Tasks.BulkInsertTask
Derleme:  Microsoft.SqlServer.BulkInsertTask (Microsoft.SqlServer.BulkInsertTask içinde.dll)

Sözdizimi

'Bildirim
Public Sub New
'Kullanım

Dim instance As New BulkInsertTask()
public BulkInsertTask()
public:
BulkInsertTask()
new : unit -> BulkInsertTask
public function BulkInsertTask()

Açıklamalar

Kod örneği, görev kurucusunu çağırmak gösterilmiştir.Ancak, çoğu durumda, görev bir paket üye olarak oluşturmakta.Görev çevrim hakkında daha fazla bilgi için bkz: Açıklamalar içinde Add.

Package pkg = new Package();
Executable exec1 = pkg.Executables.Add("STOCK:BulkInsertTask");
TaskHost th = exec1 as TaskHost;
// You can cast the InnerObject of the TaskHost
// to the specific class.
// For the code samples, the task properties are accessed by using
// the Properties collection of the TaskHost.
//BulkInsertTask myTask = th.InnerObject as BulkInsertTask;
Dim pkg As Package =  New Package() 
Dim exec1 As Executable =  pkg.Executables.Add("STOCK:BulkInsertTask") 
Dim th As TaskHost =  exec1 as TaskHost 
' You can cast the InnerObject of the TaskHost
' to the specific class.
' For the code samples, the task properties are accessed by using
' the Properties collection of the TaskHost.
' Dim myTask As BulkInsertTask =  th.InnerObject as BulkInsertTask

Özellikleri ve yöntemleri, BulkInsertTask kullanarak kullanılabilir olan TaskHost değişkeni, th.

Örnekler

Aşağıdaki kod örneği oluşturur Yeni bir BulkInsertTask kullanarak kurucusu.

BulkInsertTask myTask = new BulkInsertTask();
Dim myTask As BulkInsertTask =  New BulkInsertTask()