Visual Basic (Declaration) | |
---|---|
Public Sub AddParameter( _ ByVal paramName As String, _ ByVal paramValue As String, _ ByVal paramType As FieldType _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
|
Parameters
- paramName
- String specifying the parameter name.
- paramValue
- String pecifying the parameter value.
- paramType
- A FieldType enumeration specifying the parameter type.
This method is optionally used in conjunction with the StoredProcedure property to specify any number of parameters for the stored proc.
A number of field types are supported.
de.AddParameter("MyParameter","MyValue",FieldType.Text)