Adds an SAParameter object to this collection, created using the specified parameter name, data type, and length, to the collection.
Visual Basic
Public Function Add( _
ByVal parameterName As String, _
ByVal saDbType As SADbType, _
ByVal size As Integer _
) As SAParameter
C#
public SAParameter Add(
string parameterName,
SADbType saDbType,
int size
);
parameterName The name of the parameter.
saDbType One of the SADbType values.
size The length of the parameter.
The new SAParameter object.