BigcommerceCommand Constructor(String)
Initializes a new instance of the
BigcommerceCommand class with the text of the query.
The following example creates a
BigcommerceCommand and sets some of its properties.
public void CreateBigcommerceCommand()
{
string mySelectQuery = "SELECT * FROM customers";
BigcommerceCommand bigcommerceCommand = new BigcommerceCommand(mySelectQuery);
bigcommerceCommand.FetchSize = 100;
}
Public Sub CreateBigcommerceCommand()
Dim mySelectQuery As String = "SELECT * FROM customers"
Dim bigcommerceCommand As New BigcommerceCommand(mySelectQuery)
bigcommerceCommand.FetchSize = 100
End Sub