DA SQL Sample
NOTICE
This sample can be successfully executed against .NET Data Abstract server only.
DA SQL feature is not supported for Delphi Data Abstract servers yet!
This sample shows how DA SQL works in general. It has a set of predefined SQL statements, that you can load, execute and see the results. You can see each statement in the "SQL Statement" box. You can also change any predefined SQLs or write your custom one and execute it.
Examine the code
The code is quite simple.
We are using a structure called TableRequestInfoV6. It has property "SQL" that will hold our SQL statement.
So, look at the TClientForm.btExecuteClick event handler in the client form,
where you can find out how we send SQL statement and get the result back.
Getting started