summaryrefslogtreecommitdiff
path: root/libodb-mysql/odb/mysql/transaction.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-25 18:52:59 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-25 18:52:59 +0300
commit3a160a80c788d81e48acf19a2cf68f29cf125dae (patch)
tree8bf000b3ae959d56367c15aa214a95d24b096905 /libodb-mysql/odb/mysql/transaction.hxx
parent35bdfb3e3604527f36f046928324346e8b37b46b (diff)
Turn libodb-mysql repository into package for muti-package repositorylibodb-mysql
Diffstat (limited to 'libodb-mysql/odb/mysql/transaction.hxx')
-rw-r--r--libodb-mysql/odb/mysql/transaction.hxx88
1 files changed, 88 insertions, 0 deletions
diff --git a/libodb-mysql/odb/mysql/transaction.hxx b/libodb-mysql/odb/mysql/transaction.hxx
new file mode 100644
index 0000000..0f5ae6f
--- /dev/null
+++ b/libodb-mysql/odb/mysql/transaction.hxx
@@ -0,0 +1,88 @@
+// file : odb/mysql/transaction.hxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_MYSQL_TRANSACTION_HXX
+#define ODB_MYSQL_TRANSACTION_HXX
+
+#include <odb/pre.hxx>
+
+#include <odb/transaction.hxx>
+
+#include <odb/mysql/version.hxx>
+#include <odb/mysql/forward.hxx>
+#include <odb/mysql/tracer.hxx>
+
+#include <odb/mysql/details/export.hxx>
+
+namespace odb
+{
+ namespace mysql
+ {
+ class transaction_impl;
+
+ class LIBODB_MYSQL_EXPORT transaction: public odb::transaction
+ {
+ public:
+ typedef mysql::database database_type;
+ typedef mysql::connection connection_type;
+
+ explicit
+ transaction (transaction_impl*, bool make_current = true);
+
+ transaction ();
+
+ // Return the database this transaction is on.
+ //
+ database_type&
+ database ();
+
+ // Return the underlying database connection for this transaction.
+ //
+ connection_type&
+ connection ();
+
+ connection_type&
+ connection (odb::database&);
+
+ // Return current transaction or throw if there is no transaction
+ // in effect.
+ //
+ static transaction&
+ current ();
+
+ // Set the current thread's transaction.
+ //
+ static void
+ current (transaction&);
+
+ // SQL statement tracing.
+ //
+ public:
+ typedef mysql::tracer tracer_type;
+
+ void
+ tracer (tracer_type& t)
+ {
+ odb::transaction::tracer (t);
+ }
+
+ void
+ tracer (tracer_type* t)
+ {
+ odb::transaction::tracer (t);
+ }
+
+ using odb::transaction::tracer;
+
+ public:
+ transaction_impl&
+ implementation ();
+ };
+ }
+}
+
+#include <odb/mysql/transaction.ixx>
+
+#include <odb/post.hxx>
+
+#endif // ODB_MYSQL_TRANSACTION_HXX