ZohoDeskCommand Constructor(String,ZohoDeskConnection)
Initializes a new instance of the
ZohoDeskCommand class with the text of the query and a %% object.
The following example creates a
ZohoDeskCommand and sets some of its properties.
|
|---|
public void CreateCommand()
{
ZohoDeskConnection ZohoDeskConnection = new ZohoDeskConnection(
Refresh Token=1000.a6fde76542bfbb5244a7e539d4390e72.87e34ea57023c2d0e7dcb9ce55e3e7f);
string mySelectQuery = "SELECT * FROM Accounts";
ZohoDeskCommand ZohoDeskCommand = new ZohoDeskCommand(mySelectQuery, ZohoDeskConnection);
ZohoDeskCommand.FetchSize = 100;
} |
|
|---|
Public Sub CreateCommand()
Dim ZohoDeskConnection As New ZohoDeskConnection( _
Refresh Token=1000.a6fde76542bfbb5244a7e539d4390e72.87e34ea57023c2d0e7dcb9ce55e3e7f)
Dim mySelectQuery As String = _
"SELECT * FROM Accounts"
Dim ZohoDeskCommand As New ZohoDeskCommand(mySelectQuery, ZohoDeskConnection)
ZohoDeskCommand.FetchSize = 100
End Sub |