Chapter 24.  XmlStackFrame

#include <DbXml.hpp>

class DbXml::XmlStackFrame {
public:
    const char *getQueryFile() const;
    int getQueryLine() const;
    int getQueryColumn() const;
    XmlResults query(const std::string &queryString) const;
    std::string getQueryPlan() const;
    const XmlStackFrame *getPreviousStackFrame() const;
}; 

The XmlStackFrame class provides stack trace information about an executing query to the methods of XmlDebugListener . XmlStackFrame objects describe a stack frame in the stack trace and includes a pointer to the previous stack frame.

XmlStackFrame Methods