From 63295f6e051e75cf07cb6212a2631df8eb8a90c4 Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Mon, 5 Sep 2011 12:10:45 +0200 Subject: Add database, connection, connection-factory, and transaction support --- odb/oracle/transaction-impl.hxx | 59 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 odb/oracle/transaction-impl.hxx (limited to 'odb/oracle/transaction-impl.hxx') diff --git a/odb/oracle/transaction-impl.hxx b/odb/oracle/transaction-impl.hxx new file mode 100644 index 0000000..9338008 --- /dev/null +++ b/odb/oracle/transaction-impl.hxx @@ -0,0 +1,59 @@ +// file : odb/oracle/transaction-impl.hxx +// author : Constantin Michael +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : ODB NCUEL; see accompanying LICENSE file + +#ifndef ODB_ORACLE_TRANSACTION_IMPL_HXX +#define ODB_ORACLE_TRANSACTION_IMPL_HXX + +#include + +#include + +#include + +#include +#include +#include + +#include + +namespace odb +{ + namespace oracle + { + class LIBODB_ORACLE_EXPORT transaction_impl: public odb::transaction_impl + { + public: + typedef oracle::database database_type; + typedef oracle::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_ORACLE_TRANSACTION_IMPL_HXX -- cgit v1.1