I am using Zeoslib in Delphi to access a local MySQL database.
I call a stored procedure with the TZQuery object:
ZMakeRankedTable.SQL.Text :=
'CALL MakeRankedTable(:tableA,:tableB,:SAMP_startTime,:SAMP_endTime,:Hourspan)';
This stored procedure ends up filling a MySQL table with values.
I need to access these values, but I have no idea when MySQL is finished processing the query. I end up accessing the table before processing is complete.
Is there a .IsAvailable
or .IsExecuting
property I can access to determine whether my query has completed? If not, then how can I do it?