DB2Parameter Constructor(String,DB2Type,Int32,String)
Initializes a new instance of the
DB2Parameter class with the parameter name, data type, width, and source column name. For internal use.
The following example creates a new
DB2Parameter and sets some of its properties.
public void CreateDB2Parameter()
{
DB2Parameter myParameter = new DB2Parameter("DName", DB2Type.VarChar, 15, "DName");
myParameter.Direction = ParameterDirection.Input;
}
Public Sub CreateDB2Parameter()
Dim myParameter As New DB2Parameter("DName", DB2Type.VarChar, 15, "DName")
myParameter.Direction = ParameterDirection.Input
End Sub