diff options
Diffstat (limited to 'odb/mysql/error.hxx')
-rw-r--r-- | odb/mysql/error.hxx | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/odb/mysql/error.hxx b/odb/mysql/error.hxx new file mode 100644 index 0000000..6aeec0d --- /dev/null +++ b/odb/mysql/error.hxx @@ -0,0 +1,36 @@ +// file : odb/mysql/errors.hxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_MYSQL_ERRORS_HXX +#define ODB_MYSQL_ERRORS_HXX + +#include <odb/pre.hxx> + +#include <odb/mysql/mysql.hxx> +#include <odb/mysql/version.hxx> + +#include <odb/mysql/details/export.hxx> + +namespace odb +{ + namespace mysql + { + class connection; + + // Translate MySQL error and throw an appropriate exception. Also, + // if the error code indicates that the connection is no longer + // usable, mark it as failed. + // + LIBODB_MYSQL_EXPORT void + translate_error (connection&); + + LIBODB_MYSQL_EXPORT void + translate_error (connection&, MYSQL_STMT*); + } +} + +#include <odb/post.hxx> + +#endif // ODB_MYSQL_ERRORS_HXX |