dotConnect for DB2 Documentation
Devart.Data.DB2 Namespace / DB2Parameter Class
Members Example

DB2Parameter Class
Represents a parameter to a DB2Command, and optionally, its mapping to System.Data.DataSet columns.
Syntax
Remarks

Parameter names are not case-sensitive.

Refer to article Using Parameters in dotConnect for DB2 to obtain detailed information on the matter together with some advanced examples.

Example
The following example creates multiple instances of DB2Parameter through the DB2ParameterCollection within the DB2DataAdapter. These parameters are used to select data from DB2 and place the data in the System.Data.DataSet. This example assumes that a System.Data.DataSet and a DB2DataAdapter have already been created with the appropriate schema, commands, and connection.
public void AddDB2Parameters()
{
  // ...
  // create myDataSet and myDataAdapter
  // ...
  myDataAdapter.SelectCommand.Parameters.Add("DName", DB2Type.VarChar, 15).Value = "DEVELOPMENT";
  myDataAdapter.SelectCommand.Parameters.Add("DeptNo", DB2Type.Int).Value = 50;
  myDataAdapter.Fill(myDataSet);
}
Public Sub AddDB2Parameters()
  ' ...
  ' create myDataSet and myDataAdapter
  ' ...
  myDataAdapter.SelectCommand.Parameters.Add("DName", DB2Type.VarChar, 15).Value = "DEVELOPMENT"
  myDataAdapter.SelectCommand.Parameters.Add("DeptNo", DB2Type.Int).Value = 50
  myDataAdapter.Fill(myDataSet)
End Sub
Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      System.Data.Common.DbParameter
         Devart.Common.DbParameterBase
            Devart.Data.DB2.DB2Parameter

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also