I am using DataModule on the server which contains ADOConnection, ADOQuery and DataSetProvider. In ADOQuery SQL property I specify a query with a several parameters. In client application through the ClientDataSet I want to send a several input parameters to the server's data set. I know how to send only one parameter as described in the code below:
with ClientDataSet1 do
Data:= DataRequest(Edit1.Text);
Open;
How can I specify several query input parameters (e.g. Edit1.Text and Edit2.Text) in DataRequest function? Thanks!