Parameters
- parameterName
- The name of the parameter.
- dbType
- size
- The maximum size, in bytes, of the data within the column.
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