BigcommerceParameter Class
Represents a parameter to a
BigcommerceCommand, and optionally, its mapping to
System.Data.DataSet columns.
The following example creates multiple instances of
BigcommerceParameter through the
BigcommerceParameterCollection within the
BigcommerceDataAdapter. These parameters are used to select data from BigCommerce and place the data in the
System.Data.DataSet. This example assumes that a
System.Data.DataSet and a
BigcommerceDataAdapter have already been created with the appropriate schema, commands, and connection.
public void AddBigcommerceParameters()
{
// ...
// create myDataSet and myDataAdapter
// ...
myDataAdapter.SelectCommand.Parameters.Add("DName", BigcommerceType.VarChar, 15).Value = "DEVELOPMENT";
myDataAdapter.SelectCommand.Parameters.Add("DeptNo", BigcommerceType.Int).Value = 50;
myDataAdapter.Fill(myDataSet);
}
Public Sub AddBigcommerceParameters()
' ...
' create myDataSet and myDataAdapter
' ...
myDataAdapter.SelectCommand.Parameters.Add("DName", BigcommerceType.VarChar, 15).Value = "DEVELOPMENT"
myDataAdapter.SelectCommand.Parameters.Add("DeptNo", BigcommerceType.Int).Value = 50
myDataAdapter.Fill(myDataSet)
End Sub