📄 ex_badquery_notenoughparameters.h
字号:
#ifndef MYSQLCPPAPI_EX_BADQUERY_NOTENOUGHPARAMETERS_H#define MYSQLCPPAPI_EX_BADQUERY_NOTENOUGHPARAMETERS_H#include <string>#include "mysqlcppapi/exceptions/ex_BadQuery.h"namespace mysqlcppapi{/// Exception thrown when a Bad Query is encounteredclass ex_BadQuery_NotEnoughParameters : public ex_BadQuery{public: ex_BadQuery_NotEnoughParameters() throw(); ex_BadQuery_NotEnoughParameters(const std::string& src) throw(); ex_BadQuery_NotEnoughParameters(const ex_BadQuery_NotEnoughParameters& src) throw(); ex_BadQuery_NotEnoughParameters& operator=(const ex_BadQuery_NotEnoughParameters& src); virtual ~ex_BadQuery_NotEnoughParameters() throw();};} //namespace#endif //MYSQLCPPAPI_EX_BADQUERY_NOTENOUGHPARAMETERS_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -