dotConnect for Mailchimp Documentation
Devart.Data.MailChimp Namespace / MailChimpParameter Class
Members Example

In This Topic
    MailChimpParameter Class
    In This Topic
    Represents a parameter to a MailChimpCommand, and optionally, its mapping to System.Data.DataSet columns.
    Syntax
    'Declaration
     
    Public NotInheritable Class MailChimpParameter 
       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 Mailchimp to obtain detailed information on the matter together with some advanced examples.

    Example
    The following example creates multiple instances of MailChimpParameter through the MailChimpParameterCollection within the MailChimpDataAdapter. These parameters are used to select data from Mailchimp and place the data in the System.Data.DataSet. This example assumes that a System.Data.DataSet and a MailChimpDataAdapter have already been created with the appropriate schema, commands, and connection.
    public void AddMailChimpParameters()
    {
      // ...
      // create myDataSet and myDataAdapter
      // ...
      myDataAdapter.SelectCommand.Parameters.Add("DName", MailChimpType.VarChar, 15).Value = "DEVELOPMENT";
      myDataAdapter.SelectCommand.Parameters.Add("DeptNo", MailChimpType.Int).Value = 50;
      myDataAdapter.Fill(myDataSet);
    }
    Public Sub AddMailChimpParameters()
      ' ...
      ' create myDataSet and myDataAdapter
      ' ...
      myDataAdapter.SelectCommand.Parameters.Add("DName", MailChimpType.VarChar, 15).Value = "DEVELOPMENT"
      myDataAdapter.SelectCommand.Parameters.Add("DeptNo", MailChimpType.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.MailChimp.MailChimpParameter

    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