IDTSTaskInit100.InitializeTask 方法
此 API 支持 SQL Server 2012 基础结构,但不能通过代码直接使用。
Initializes the properties associated with the task. This method is called by the runtime and is not used in code.
命名空间: Microsoft.SqlServer.Dts.Runtime.Wrapper
程序集: Microsoft.SqlServer.DTSRuntimeWrap(在 Microsoft.SqlServer.DTSRuntimeWrap.dll 中)
语法
声明
Sub InitializeTask ( _
pConnections As IDTSConnections100, _
pVariableDispenser As IDTSVariableDispenser100, _
pEvents As IDTSInfoEvents100, _
pLog As IDTSLogging100, _
pEventInfos As IDTSEventInfos100, _
pLogEntryInfos As IDTSLogEntryInfos100, _
pRefTracker As IDTSObjectReferenceTracker100 _
)
用法
Dim instance As IDTSTaskInit100
Dim pConnections As IDTSConnections100
Dim pVariableDispenser As IDTSVariableDispenser100
Dim pEvents As IDTSInfoEvents100
Dim pLog As IDTSLogging100
Dim pEventInfos As IDTSEventInfos100
Dim pLogEntryInfos As IDTSLogEntryInfos100
Dim pRefTracker As IDTSObjectReferenceTracker100
instance.InitializeTask(pConnections, _
pVariableDispenser, pEvents, pLog, _
pEventInfos, pLogEntryInfos, pRefTracker)
void InitializeTask(
IDTSConnections100 pConnections,
IDTSVariableDispenser100 pVariableDispenser,
IDTSInfoEvents100 pEvents,
IDTSLogging100 pLog,
IDTSEventInfos100 pEventInfos,
IDTSLogEntryInfos100 pLogEntryInfos,
IDTSObjectReferenceTracker100 pRefTracker
)
void InitializeTask(
[InAttribute] IDTSConnections100^ pConnections,
[InAttribute] IDTSVariableDispenser100^ pVariableDispenser,
[InAttribute] IDTSInfoEvents100^ pEvents,
[InAttribute] IDTSLogging100^ pLog,
[InAttribute] IDTSEventInfos100^ pEventInfos,
[InAttribute] IDTSLogEntryInfos100^ pLogEntryInfos,
[InAttribute] IDTSObjectReferenceTracker100^ pRefTracker
)
abstract InitializeTask :
pConnections:IDTSConnections100 *
pVariableDispenser:IDTSVariableDispenser100 *
pEvents:IDTSInfoEvents100 *
pLog:IDTSLogging100 *
pEventInfos:IDTSEventInfos100 *
pLogEntryInfos:IDTSLogEntryInfos100 *
pRefTracker:IDTSObjectReferenceTracker100 -> unit
function InitializeTask(
pConnections : IDTSConnections100,
pVariableDispenser : IDTSVariableDispenser100,
pEvents : IDTSInfoEvents100,
pLog : IDTSLogging100,
pEventInfos : IDTSEventInfos100,
pLogEntryInfos : IDTSLogEntryInfos100,
pRefTracker : IDTSObjectReferenceTracker100
)
参数
- pConnections
类型:Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSConnections100
A collection of connections used by the task.
- pVariableDispenser
类型:Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSVariableDispenser100
An IDTSVariableDispenser100 object for locking variables.
- pEvents
类型:Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSInfoEvents100
An object that implements the IDTSInfoEvents100 interface.
- pLog
类型:Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSLogging100
An object that implements the IDTSLogging100 interface.
- pEventInfos
类型:Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSEventInfos100
A collection that contains events to be raised during execution of the task.
- pLogEntryInfos
类型:Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSLogEntryInfos100
A collection of log entries.
- pRefTracker
类型:Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSObjectReferenceTracker100
An object reference tracker.
注释
For more information, see Task.