Represents a parameter to a
ZohoDeskCommand, and optionally, its mapping to
System.Data.DataSet columns.
The following example creates multiple instances of
ZohoDeskParameter through the
ZohoDeskParameterCollection within the
ZohoDeskDataAdapter. These parameters are used to select data from Zoho Desk and place the data in the
System.Data.DataSet. This example assumes that a
System.Data.DataSet and a
ZohoDeskDataAdapter have already been created with the appropriate schema, commands, and connection.
|
|---|
public void AddZohoDeskParameters()
{
// ...
// create myDataSet and myDataAdapter
// ...
myDataAdapter.SelectCommand.Parameters.Add("DName", ZohoDeskType.VarChar, 15).Value = "DEVELOPMENT";
myDataAdapter.SelectCommand.Parameters.Add("DeptNo", ZohoDeskType.Int).Value = 50;
myDataAdapter.Fill(myDataSet);
} |
|
|---|
Public Sub AddZohoDeskParameters()
' ...
' create myDataSet and myDataAdapter
' ...
myDataAdapter.SelectCommand.Parameters.Add("DName", ZohoDeskType.VarChar, 15).Value = "DEVELOPMENT"
myDataAdapter.SelectCommand.Parameters.Add("DeptNo", ZohoDeskType.Int).Value = 50
myDataAdapter.Fill(myDataSet)
End Sub |