Enum SqlParamDirection
Sets the SQL param direction.
Namespace:
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public enum SqlParamDirection : int
Fields
Name | Description |
---|---|
Input | Used for Input variables. The value will be passed from calling environment. This is the default. |
InputOutput | The parameter can perform both input and output. |
Output | Used for Output variable and value will be returned to calling environment. |
ReturnValue | The parameter represents a return value from an operation such as a stored procedure, built-in function, or user-defined function. |