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