From a8a2cd61bb9f3657c65acf3a1d9dfaaa68271f4e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 20 Nov 2011 14:57:35 +0200 Subject: Implement support for transactions --- odb/mssql/transaction.hxx | 89 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 odb/mssql/transaction.hxx (limited to 'odb/mssql/transaction.hxx') diff --git a/odb/mssql/transaction.hxx b/odb/mssql/transaction.hxx new file mode 100644 index 0000000..57806b8 --- /dev/null +++ b/odb/mssql/transaction.hxx @@ -0,0 +1,89 @@ +// file : odb/mssql/transaction.hxx +// author : Constantin Michael +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : ODB NCUEL; see accompanying LICENSE file + +//@@ disabled functionality + +#ifndef ODB_MSSQL_TRANSACTION_HXX +#define ODB_MSSQL_TRANSACTION_HXX + +#include + +#include + +#include +#include +//#include + +#include + +namespace odb +{ + namespace mssql + { + class transaction_impl; + + class LIBODB_MSSQL_EXPORT transaction: public odb::transaction + { + public: + typedef mssql::database database_type; + typedef mssql::connection connection_type; + + explicit + transaction (transaction_impl*); + + // Return the database this transaction is on. + // + database_type& + database (); + + // Return the underlying database connection for this transaction. + // + connection_type& + connection (); + + // 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 mssql::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_MSSQL_TRANSACTION_HXX -- cgit v1.1