aboutsummaryrefslogtreecommitdiff
path: root/odb/mssql/transaction-impl.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-11-17 11:31:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-11-17 11:31:00 +0200
commit61e6f0fded93f1e2105d7f4734b280712afe0c59 (patch)
treeb462d0b4e27456300c6c21afad21a6d0afa4341e /odb/mssql/transaction-impl.hxx
parent00d972abb9dcbe7c99cd9b94cefc725024cfb4bc (diff)
Add connection, connection-factory implementations
Diffstat (limited to 'odb/mssql/transaction-impl.hxx')
-rw-r--r--odb/mssql/transaction-impl.hxx56
1 files changed, 56 insertions, 0 deletions
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 <boris@codesynthesis.com>
+// 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 <odb/pre.hxx>
+
+#include <odb/transaction.hxx>
+
+#include <odb/mssql/version.hxx>
+#include <odb/mssql/forward.hxx>
+
+#include <odb/mssql/details/export.hxx>
+
+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 <odb/mssql/transaction-impl.ixx>
+
+#include <odb/post.hxx>
+
+#endif // ODB_MSSQL_TRANSACTION_IMPL_HXX