Примечание.
Для доступа к этой странице требуется авторизация. Вы можете попробовать войти или изменить каталоги.
Для доступа к этой странице требуется авторизация. Вы можете попробовать изменить каталоги.
Allows the ForEachEnumerator to determine if it contains invalid settings that will prevent it from executing successfully.
Пространство имен: Microsoft.SqlServer.Dts.Runtime
Сборка: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
Синтаксис
'Декларация
Function Validate ( _
connections As Connections, _
variableDispenser As VariableDispenser, _
infoEvents As IDTSInfoEvents, _
log As IDTSLogging _
) As DTSExecResult
DTSExecResult Validate (
Connections connections,
VariableDispenser variableDispenser,
IDTSInfoEvents infoEvents,
IDTSLogging log
)
DTSExecResult Validate (
Connections^ connections,
VariableDispenser^ variableDispenser,
IDTSInfoEvents^ infoEvents,
IDTSLogging^ log
)
DTSExecResult Validate (
Connections connections,
VariableDispenser variableDispenser,
IDTSInfoEvents infoEvents,
IDTSLogging log
)
function Validate (
connections : Connections,
variableDispenser : VariableDispenser,
infoEvents : IDTSInfoEvents,
log : IDTSLogging
) : DTSExecResult
Параметры
- connections
A collection of connections used by the ForEachEnumerator.
- variableDispenser
A VariableDispenser object for locking variables.
- infoEvents
An object that implements the IDTSInfoEvents interface.
- log
An object that implements the IDTSLogging interface.
Возвращаемое значение
A value from the DTSExecResult enumeration.
Замечания
The Validate method reviews properties and settings for inaccuracies or incorrect settings. The method does not touch data, or connect to data sources to validate connections. However, it ensures that required fields are populated and contain appropriate values. The fields that are validated differ depending on what object is being validated.
The primary use of Validate is when writing a custom task. The Validate method is called by the SSIS Designer when a task is dropped onto the design surface and again, potentially multiple times, when properties are being set. However, in code, the Validate method on individual objects is not commonly used, as it is recommended that you call the Validate method on the Package when you need to validate objects. However, the method is available on individual objects should you find a unique circumstance where it is needed.
The Validate method is overridden in custom tasks, either for validation of the object when used in the SSIS Designer, or when called by code. For more information on writing the Validate method for a custom task, see Coding a Custom Task.
Пример
The following code example shows how to validate objects using the Validate method of the Package object.
DTSExecResult myresult = pkg.Validate(myPkgConnections, myPkgVariables, myIDTSEvents, myIDTSLogging);
Dim myresult As DTSExecResult = pkg.Validate(myPkgConnections,myPkgVariables,myIDTSEvents, myIDTSLogging)
Синхронизация потоков
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
IDTSForEachEnumerator Interface
IDTSForEachEnumerator Members
Microsoft.SqlServer.Dts.Runtime Namespace