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