summaryrefslogtreecommitdiff
path: root/libodb-mysql/odb/mysql/error.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libodb-mysql/odb/mysql/error.hxx')
-rw-r--r--libodb-mysql/odb/mysql/error.hxx34
1 files changed, 34 insertions, 0 deletions
diff --git a/libodb-mysql/odb/mysql/error.hxx b/libodb-mysql/odb/mysql/error.hxx
new file mode 100644
index 0000000..0893841
--- /dev/null
+++ b/libodb-mysql/odb/mysql/error.hxx
@@ -0,0 +1,34 @@
+// file : odb/mysql/error.hxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_MYSQL_ERROR_HXX
+#define ODB_MYSQL_ERROR_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_ERROR_HXX