dotConnect for QuickBooks Online Documentation
Devart.Data.QuickBooks Namespace / QuickBooksParameter Class
Members Example

QuickBooksParameter Class
Represents a parameter to a QuickBooksCommand, and optionally, its mapping to System.Data.DataSet columns.
Syntax
'Declaration
 
Public NotInheritable Class QuickBooksParameter 
   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 QuickBooks Online to obtain detailed information on the matter together with some advanced examples.

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

See Also