Now I'm ready to integrate it into the Delphi program.
All I need to do is perform an INSERT.
Even with the ZSimple example, there seems to be a lot of functionality I don't need.
As I study the "ZeosDocumentationCollection-2017-03-20.pdf" there is no component for INSERT.
Searching on INSERT, I find:
But ExecSQL is not documented, and TZStoredProc doesn't seem like the right functionality.If you want to execute an SQL statement which has no result set (e. g.:
INSERT or UPDATE) you have to use ExecSQL (see also: TZStoredProc).
What is the minimum set of components needed to perform an INSERT into Postgres?
Is there any example I can use to guide?