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