diff options
author | randomdan <randomdan@localhost> | 2012-11-18 19:13:16 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2012-11-18 19:13:16 +0000 |
commit | 49286cb2d2987e4d2f6a07f6b9ed46d4de97d9ac (patch) | |
tree | 9064882e6e44203bf35bf70089500c326458b6f1 /libmysqlpp/error.h | |
parent | Migrate all stuff to stricter compilations/links and C++0x builds (diff) | |
download | libdbpp-mysql-49286cb2d2987e4d2f6a07f6b9ed46d4de97d9ac.tar.bz2 libdbpp-mysql-49286cb2d2987e4d2f6a07f6b9ed46d4de97d9ac.tar.xz libdbpp-mysql-49286cb2d2987e4d2f6a07f6b9ed46d4de97d9ac.zip |
Add a basic MySQL connector, not fully functional, but will suffice for p2tv
Diffstat (limited to 'libmysqlpp/error.h')
-rw-r--r-- | libmysqlpp/error.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libmysqlpp/error.h b/libmysqlpp/error.h new file mode 100644 index 0000000..9ab666b --- /dev/null +++ b/libmysqlpp/error.h @@ -0,0 +1,24 @@ +#ifndef MY_ERROR_H +#define MY_ERROR_H + +#include "../libdbpp/error.h" + +namespace MySQL { + class Error : public DB::Error { + public: + Error(); + Error(const Error &); + Error(const char *); + ~Error() throw(); + + const char * what() const throw(); + + private: + char * msg; + }; + class ConnectionError : public Error, public virtual DB::ConnectionError { + }; +} + +#endif + |