Search found 2 matches

by uuid
24.10.2008, 05:49
Forum: MySQL
Topic: new at zeoslib, I need support in some areas
Replies: 2
Views: 1032

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 ...
by uuid
24.10.2008, 05:43
Forum: MySQL
Topic: Data from insert
Replies: 5
Views: 853

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...