| StoredProcedureParameterType Enumeration |
The type of parameter used by the stored procedure.
Namespace:
Galactic.Sql
Assembly:
Galactic.Sql (in Galactic.Sql.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public enum ParameterType
Public Enumeration ParameterType
public enum class ParameterType
Members
| Member name | Value | Description |
---|
| In | 0 |
A parameter that provides data to the procedure.
|
| Out | 1 |
A parameter that returns data from a procedure.
|
| InOut | 2 |
A parameter that provides and returns data from a procedure.
|
| Return | 3 |
The return value of a procedure.
|
See Also