AddSPParameter(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 and direction of the SP parameter to be specified
'Declaration
Public Overloads Sub AddSPParameter( _
ByVal paramName As String, _
ByVal dataType As String, _
ByVal direction As String _
)
'Usage
Dim instance As XMLSPBuilder
Dim paramName As String
Dim dataType As String
Dim direction As String
instance.AddSPParameter(paramName, dataType, direction)
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