From 61e6f0fded93f1e2105d7f4734b280712afe0c59 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 17 Nov 2011 11:31:00 +0200 Subject: Add connection, connection-factory implementations --- odb/mssql/transaction-impl.hxx | 56 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 odb/mssql/transaction-impl.hxx (limited to 'odb/mssql/transaction-impl.hxx') diff --git a/odb/mssql/transaction-impl.hxx b/odb/mssql/transaction-impl.hxx new file mode 100644 index 0000000..57d9d5b --- /dev/null +++ b/odb/mssql/transaction-impl.hxx @@ -0,0 +1,56 @@ +// file : odb/mssql/transaction-impl.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_MSSQL_TRANSACTION_IMPL_HXX +#define ODB_MSSQL_TRANSACTION_IMPL_HXX + +#include + +#include + +#include +#include + +#include + +namespace odb +{ + namespace mssql + { + class LIBODB_MSSQL_EXPORT transaction_impl: public odb::transaction_impl + { + public: + typedef mssql::database database_type; + typedef mssql::connection connection_type; + + transaction_impl (database_type&); + transaction_impl (connection_ptr); + + virtual + ~transaction_impl (); + + virtual void + start (); + + virtual void + commit (); + + virtual void + rollback (); + + connection_type& + connection (); + + private: + connection_ptr connection_; + }; + } +} + +#include + +#include + +#endif // ODB_MSSQL_TRANSACTION_IMPL_HXX -- cgit v1.1