SAParameter(String, SADbType, Int32, String) constructor

Initializes an SAParameter object with the specified parameter name, data type, and length.

Syntax
Visual Basic

Public Sub New( _
   ByVal parameterName As String, _
   ByVal dbType As SADbType, _
   ByVal size As Integer, _
   ByVal sourceColumn As String _
)
C#

public  SAParameter(
   string  parameterName,
   SADbType dbType,
   int size,
   string  sourceColumn
);
Parameters
  • parameterName   The name of the parameter.

  • dbType   One of the SADbType values

  • size   The length of the parameter.

  • sourceColumn   The name of the source column to map.

See also