'Declaration Public Overrides Property CommandType As CommandType
public override CommandType CommandType {get; set;}
'Declaration Public Overrides Property CommandType As CommandType
public override CommandType CommandType {get; set;}
CommandType can be one of the following values: Text, StoredProcedure, TableDirect.
When the value is CommandType.Text, the property CommandText should contain text of a query that must be run on the server.
When the value is CommandType.StoredProcedure, CommandText property must be a name of a procedure to execute.
When the value is set to TableDirect, CommandText must be name of a table you want to get all data from. All rows and columns are retrieved.
public void CreateCommand() { QuickBooksCommand quickBooksCommand = new QuickBooksCommand(); quickBooksCommand.CommandText = "SELECT * FROM Customer ORDER BY Id"; quickBooksCommand.CommandType = CommandType.Text; }
Public Sub CreateCommand() Dim quickBooksCommand As New QuickBooksCommand() quickBooksCommand.CommandText = "SELECT * FROM Customer ORDER BY Id" quickBooksCommand.CommandType = CommandType.Text End Sub