From 3a160a80c788d81e48acf19a2cf68f29cf125dae Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 25 Jan 2024 18:52:59 +0300 Subject: Turn libodb-mysql repository into package for muti-package repository --- libodb-mysql/odb/mysql/transaction.hxx | 88 ++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 libodb-mysql/odb/mysql/transaction.hxx (limited to 'libodb-mysql/odb/mysql/transaction.hxx') 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 + +#include + +#include +#include +#include + +#include + +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 + +#include + +#endif // ODB_MYSQL_TRANSACTION_HXX -- cgit v1.1