So far, as a test, I have managed to put a small bit of php on the web server that runs a query against the database and returns some results. By navigating to it in my browser I can see the results in my web browser.
Now I want to do the same thing from delphi. Ideally I want Delphi to generate some sql, send it to the database and have the results interpreted in some way and processed by Delphi. Essentially I'm trying to take one of my applications that uses a local SQLite database and convert it to use mySQL over the Internet.
Is this the sort of thing AnyDAC can do?
Easily?
Anyone got any suggestions as to best way to achieve what I want