That kind of brakes our intention to replace our DB access layer with RemoteDB.
Is this something you eventually will implement?
But how do you handle features like server generated id (sequence for Oracle or autoinc columns) when using a regular SELECT statement?
If you append a record, you must have back the primary key (KeyFields) to do further updates. Do you do another round trip with SELECT filtered by all columns from the INSERT statement?
Each database uses its own mechanism. We have TMS Aurelius fully working over RemoteDB, for example.
Aurelius uses specific mechanism for each database to retrieve id.
Some of them use sequences/generators. In those cases, we execute a previous SQL command to retrieve the next value in sequence, and then perform the insert with the retrieved value.
Some databases provide a separate SQL command to retrieve the last inserted value, like SELECT LAST_INSERT_ID() for MySQL or SELECT last_insert_rowid() for SQLite.
Finally, for some databases Aurelius execute a kind of "RETURNING" clause like you did. That is used for MS SQL Server, Postgres and Firebird, for example. But we don't return them in a parameter. We just use something like "SELECT ... RETURNING `. The dataset is open and the inserted value is retrieved by doing a simple Fields[0].AsInteger call.