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