BulkInsertTask Costruttore
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inizializza una nuova istanza della classe BulkInsertTask.
public:
BulkInsertTask();
public BulkInsertTask();
Public Sub New ()
Esempio
Il seguente esempio di codice crea un nuovo BulkInsertTask usando il costruttore.
BulkInsertTask myTask = new BulkInsertTask();
Dim myTask As BulkInsertTask = New BulkInsertTask()
Commenti
L'esempio di codice mostra come chiamare il task builder. Tuttavia, nella maggior parte dei casi, creerai il compito come membro di un pacchetto. Per maggiori informazioni sull'incantazione del compito, vedi le osservazioni in 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
Le proprietà e i metodi del BulkInsertTask sono disponibili usando la TaskHost variabile, th.