Purpose
Returns a 2-dimensional array with all the values of the ParameterDirection Enum.
Description
Every row in this array has 2 values:
• | The numeric value of the Enum value |
• | A text representation of this value |
This array can be used to validate values, and to print a ,meaningful description of the values during debugging
You can pass this array tro the DaoEnum2Str() function to convert the value of an Enum to a string
Constant | Description |
dbParamInput | (Default) Passes information to the procedure. |
dbParamInputOutput | Passes information both to and from the procedure. |
dbParamOutput | Returns information from the procedure as in an output parameter in SQL. |
dbParamReturnValue | Passes the return value from a procedure. |
Returns
Array
See Also