📄 oraerror.cpp
字号:
#include "stdafx.h"
#define __OCICPP_INTERNAL_USE_
#include "OraError.h"
/*! \class OCICPP::OraError
\brief Representation of Oracle and internal OCICPPLIB errors structured exceptions handling
*/
/*! \var OCICPP::OraError::message
Cleartext error message
*/
/*! \var OCICPP::OraError::errtype
Type of the error (currently: location, where the error occurred)
*/
/*! \fn OCICPP::OraError::OraError(OCIError *err,sword status)
Create a new object from an OCIError \a err .
*/
/*! \fn OCICPP::OraError::OraError(char *err,sword status)
*/
/*! \fn OCICPP::OraError::OraError(string &mess,OCICPP::ErrorType t)
*/
/*! \fn OCICPP::OraError::OraError(int err)
*/
/*! \fn OCICPP::OraError::~OraError()
*/
OCICPP::ErrorType OCICPP::OraError::errtype () const throw ()
{
return mv_errtype;
}
const char* OCICPP::OraError::what () const throw ()
{
return message.c_str();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -