I am working on the simple client server application using EMS
(i.e: for future iOS application) in Delphi.
On the client unit, I have EMSProvider
and EMSFireDACClient
which fetches data from a Database (MSSQL) through a Datasource.
On the server unit, I have FDConnection
and TFDQuery
which deals with my Database. So far everything is working fine.
Question: Now I need to pass some parameters from client to the server and that fetches the result data. How should I do using EMS
? Any functions or procedures available in EMS
?
Regarding source code, everything was handled by corresponding components. So coding part is very less.
Thanks in advance.