AddSPParameter(String,String,String,String,String) 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, direction, size and value of the SP parameter to be specified
public void AddSPParameter(
string paramName,
string dataType,
string direction,
string size,
string paramValue
)
Parameters
- paramName
- The name of the new SP parameter as a string
- dataType
- The data type of the new SP parameter as a string
- direction
- The direction of the new SP parameter as a string
- size
- The size of the new SP parameter as a string
- paramValue
- The value of the new SP parameter as a string