diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-08 17:06:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-08 17:06:00 +0200 |
commit | cbaa5532f056d0ad20300abbba253b065982187a (patch) | |
tree | e5cb266ec911ad81bdc4fd0a3149d9941ac4a424 /libcommon | |
parent | 35662787f479b93b3205310934574132609461cc (diff) |
Add common/transaction test (port from tracer)
Diffstat (limited to 'libcommon')
-rw-r--r-- | libcommon/common/common.hxx | 2 | ||||
-rw-r--r-- | libcommon/common/concrete.hxx | 43 |
2 files changed, 44 insertions, 1 deletions
diff --git a/libcommon/common/common.hxx b/libcommon/common/common.hxx index b3ab40c..ead8888 100644 --- a/libcommon/common/common.hxx +++ b/libcommon/common/common.hxx @@ -15,7 +15,7 @@ #include <common/config.hxx> #include <common/export.hxx> -// Make sure assert() is not diabled. +// Make sure assert() is not disabled. // #ifdef NDEBUG # error ODB tests require enabled assert(); un-define the NDEBUG macro diff --git a/libcommon/common/concrete.hxx b/libcommon/common/concrete.hxx new file mode 100644 index 0000000..d3c8cc4 --- /dev/null +++ b/libcommon/common/concrete.hxx @@ -0,0 +1,43 @@ +// file : libcommon/common/concrete.hxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef LIBCOMMON_COMMON_CONCRETE_HXX +#define LIBCOMMON_COMMON_CONCRETE_HXX + +#include <common/config.hxx> + +// Namespace alias for the concrete database namespace. +// +#if defined(DATABASE_MYSQL) + +#include <odb/mysql/database.hxx> +#include <odb/mysql/transaction.hxx> + +namespace odb_db = odb::mysql; + +#elif defined(DATABASE_SQLITE) + +#include <odb/sqlite/database.hxx> +#include <odb/sqlite/transaction.hxx> + +namespace odb_db = odb::sqlite; + +#elif defined(DATABASE_PGSQL) + +#include <odb/pgsql/database.hxx> +#include <odb/pgsql/transaction.hxx> + +namespace odb_db = odb::pgsql; + +#elif defined(DATABASE_ORACLE) + +#include <odb/oracle/database.hxx> +#include <odb/oracle/transaction.hxx> + +namespace odb_db = odb::oracle; + +#endif + +#endif // LIBCOMMON_COMMON_CONCRETE_HXX |