|
Contents: Search: | MQL ErrorOverviewThe MQL Error class encapsulates a string which contains the latest error message from the MQL compiler. Any database error must be gotten from the EMdFDB interface. C++ interface
#include <mql_error.h>
class MQLError {
public:
MQLError();
~MQLError();
void clearError(void);
std::string getError(void);
};
|