BulkInsertTask 构造函数

定义

初始化 BulkInsertTask 类的新实例。

public:
 BulkInsertTask();
public BulkInsertTask ();
Public Sub New ()

示例

下面的代码示例使用构造函数创建一个新的 BulkInsertTask

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

注解

此代码示例演示如何调用任务构造函数。 但在大多数情况下,你将创建作为包成员的任务。 有关强制转换任务的详细信息,请参阅中的备注 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  

BulkInsertTask使用变量可以使用的属性和方法 TaskHost th

适用于