I have to write to a Filemaker database.
I install the ODBC driver from Filemaker and make some test with SQL .
The questions are :
How to know the number of record with a select clause :
oODBC := TOdbc():New("NEPHRO", "admin", "123")
oDbf := oOdbc:execute("SELECT IPP FROM PATREC where IPP='25' )
How to check the number of records ??
oDbf := oOdbc:execute("INSERT INTO test (NOM,PRENOM) VALUES ('TEST SQL','essai')" )
How to check that the INSERT is properly executed ?
Thanks