AddSPParameter Method
- Last UpdatedNov 06, 2025
- 1 minute read
Add a Stored Procedure Parameter to the previously added SP name This overload allows the data type and direction of the SP parameter to be specified
| Overload | Description |
|---|---|
| AddSPParameter(String,String,String) | Add a Stored Procedure Parameter to the previously added SP name This overload allows the data type and direction of the SP parameter to be specified |
| AddSPParameter(String,String,String,String) | Add a Stored Procedure Parameter to the previously added SP name This overload allows the data type and direction and size of the SP parameter to be specified |
| AddSPParameter(String,String,String,String,String) | Add a Stored Procedure Parameter to the previously added SP name This overload allows the data type, direction, size and value of the SP parameter to be specified |
| AddSPParameter(String,SPParamDataTypes,SPParamDirections,String,String) | Add a Stored Procedure Parameter to the previously added SP name. This overload allows the data type, direction, size and value of the SP parameter to be specified with enums to specify the data type and direction. |
| AddSPParameter(String,SPParamDataTypes,SPParamDirections) | Add a Stored Procedure Parameter to the previously added SP name. This overload allows the data type, direction, size and value of the SP parameter to be specified with enums to specify the data type and direction. |
| AddSPParameter(String,SPParamDataTypes,SPParamDirections,String) | Add a Stored Procedure Parameter to the previously added SP name. This overload allows the data type, direction, size and value of the SP parameter to be specified with enums to specify the data type and direction. |