dotConnect for Zoho CRM Documentation
Devart.Data.Zoho Namespace / ZohoParameter Class
Members Example

In This Topic
    ZohoParameter Class
    In This Topic
    Represents a parameter to a ZohoCommand, and optionally, its mapping to System.Data.DataSet columns.
    Syntax
    'Declaration
     
    Public NotInheritable Class ZohoParameter 
       Inherits Devart.Data.SqlShimParameter
       Implements System.Data.IDataParameterSystem.Data.IDbDataParameterSystem.ICloneable 
    Remarks

    Parameter names are not case-sensitive.

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

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

    System.Object
       System.MarshalByRefObject
          System.Data.Common.DbParameter
             Devart.Common.DbParameterBase
                Devart.Data.SqlShimParameter
                   Devart.Data.Zoho.ZohoParameter

    See Also