We've been using DbxMda 3.0 in C++ Builder 6.0 Pro for quite some time now with great success until today.
Previously we've only used it for regular INSERT/UPDATE/SELECT statements but we now want to execute the "SHOW MASTER STATUS" and "SHOW SLAVE STATUS" commands. So far all attempts has failed with the exception "DXB Error: Operation not supported".
Is it possible to execute these commands and if so, how should it be done?
We're using MySQL 5.0.11 and 5.1.1
Update:
Ok, it seems the command is executed correctly after all, it is reading TSQLDataSet->RecordCount that throws the exception mentioned above; seems you can't use it:
- The dataset represents stored procedure.
- The dataset represents a query that contains parameters.
- The dataset represents a multi-table join.
I guess the first option applies to this scenario.
Note to self: RTFM twice
