Issue the TzTable.refresh or TzQuery.refresh to update your screen view of the data that may have been updated by other users. ADOQuery has different "Refresh" and "Requery" methods. Requery does a complete refresh, and Refresh refreshes just the current table row. ZQuery lacks ...
ZQuery with SQL = BEGIN INSERT INTO table_profession_rubric (key_profession, key_rubric) VALUES (:arg_key_profession, :arg_key_rubric); SELECT LAST_INSERT_ID() AS 'out_id'; END doesn't work as expected. Is it possible not use 2 ZQueries? I'm not sure whether "SELECT LAST_INSERT_ID()" is sp...