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