Compartir a través de


ParameterDirections Enumeración

Defines the type of the parameters available to use in the SQL statement that the Execute SQL task runs.

Esta enumeración tiene un atributo FlagsAttribute que permite una combinación bit a bit de los valores de sus miembros.

Espacio de nombres:  Microsoft.SqlServer.Dts.Tasks.ExecuteSQLTask
Ensamblado:  Microsoft.SqlServer.SQLTask (en Microsoft.SqlServer.SQLTask.dll)

Sintaxis

'Declaración
<FlagsAttribute> _
Public Enumeration ParameterDirections
'Uso
Dim instance As ParameterDirections
[FlagsAttribute]
public enum ParameterDirections
[FlagsAttribute]
public enum class ParameterDirections
[<FlagsAttribute>]
type ParameterDirections
public enum ParameterDirections

Miembros

Nombre del miembro Descripción
Input The parameter is an input parameter that passes a value to the SQL statement.
Output The parameter is an output parameter that returns a value to the Execute SQL task.
ReturnValue The parameter is a return code that returns an integer value from a stored procedure to the Execute SQL task.

Notas

Parameters are used to exchange data between the Execute SQL task and the queries or stored procedures it calls. For more information about parameters, see Parámetros (motor de base de datos) and Devolver datos mediante parámetros OUTPUT.