Purpose
A short Value that indicates whether a Parameter object represents an input parameter, an output parameter, both, or the return value from the procedure (ODBCDirect workspaces only).
Remarks
The Direction property can be any of the following constants:
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 |
Class