Returns the result of the last query execution.
function GetExecuteInfo: string;
Call the GetExecuteInfo method to returns the result of the last query execution.
The description of the result format you can see at MySQL Reference Manual mysql_info
Note: If you execute a query at TCustomDADataSet.Execute with TCustomMyDataSet.FetchAll set to False, a result cannot be retrieved.
The method makes sense for the following SQL statements:
INSERT INTO ... SELECT ... INSERT INTO ... VALUES (...),(...),(...)... LOAD DATA INFILE ... ALTER TABLE UPDATE