Thanks for your response!!
But I don't understand "Appeon behaves the same as that in PB". PB itself retrieves the new identity column. We even have an option in "pbodbxxx.ini" to define how to obtain it (GetIdentity='Select @@identity' for example).
Maybe we could use something like that in, for example, DBParm:
SQLCA.DBMS = "ODBC"
SQLCA.AutoCommit = False
SQLCA.DBParm = "ConnectString='DSN=Mobile15TestDB;UID=DBA;PWD=sql'; EnabledLocalDB='true'; CacheName='MySQLite'; GetIdentity='select last_insert_rowid();' "
connect;
Regards