dotConnect Universal Documentation
Devart.Data.Universal Namespace / UniParameter Class
Members Example

In This Topic
    UniParameter Class
    In This Topic
    Represents a parameter to a UniCommand, and optionally, its mapping to System.Data.DataSet columns.
    Syntax
    Remarks

    Parameter names are not case-sensitive.

    Refer to article Using Parameters in Universal .NET to obtain detailed information on the matter together with some advanced examples.

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

    System.Object
       System.MarshalByRefObject
          System.Data.Common.DbParameter
             Devart.Common.DbParameterBase
                Devart.Data.Universal.UniParameter

    See Also