Using php + ODBC.
I have a table where each record has a unique id, maintained by filemaker, and i need to know the unique id of the record i just inserted later on the page.
Is there an equivalent to MySQL's LAST_INSERT_ID() using filemaker + ODBC? I couldn't find anything on their site.
here's a description of LAST_INSERT_ID: http://www.mysqlfreaks.com/statements/90.php
As a workaround i suppose could calculat
e my own unique id, and not have filemaker do it.