MQL Error

Overview

The 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 <emdros/mql_error.h>

class CMQLError {
public:
  CMQLError();
  ~CMQLError();
  void mql_clear_error(void);
  std::string mql_get_error(void);
};


Previous:MQL execution environment
Up:Part II: APIs
Next:MQL language