diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-17 16:49:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-20 15:45:45 +0200 |
commit | 04201d013c2a43d27987122e0118236d74154d77 (patch) | |
tree | f806841bec2378ca955a7bea2ca45a978ed39edb /libcommon/common/common.cxx | |
parent | 16a4099d36ca1cdc33cf6e2b99edce796595341f (diff) |
Add initial support for SQL Server test infrastructure
Diffstat (limited to 'libcommon/common/common.cxx')
-rw-r--r-- | libcommon/common/common.cxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libcommon/common/common.cxx b/libcommon/common/common.cxx index 285ef68..28fd24a 100644 --- a/libcommon/common/common.cxx +++ b/libcommon/common/common.cxx @@ -25,6 +25,9 @@ #elif defined(DATABASE_ORACLE) # include <odb/oracle/database.hxx> # include <odb/oracle/connection-factory.hxx> +#elif defined(DATABASE_MSSQL) +# include <odb/mssql/database.hxx> +# include <odb/mssql/connection-factory.hxx> #else # error unknown database #endif @@ -42,6 +45,8 @@ namespace sqlite = odb::sqlite; namespace pgsql = odb::pgsql; #elif defined(DATABASE_ORACLE) namespace oracle = odb::oracle; +#elif defined(DATABASE_MSSQL) +namespace mssql = odb::mssql; #endif auto_ptr<database> @@ -124,6 +129,14 @@ create_database (int& argc, // to UTF-8. // db.reset (new oracle::database (argc, argv, false, 873, 873, 0, f)); + +#elif defined(DATABASE_MSSQL) + auto_ptr<mssql::connection_factory> f; + + if (max_connections != 0) + f.reset (new mssql::connection_pool_factory (max_connections)); + + db.reset (new mssql::database (argc, argv, false, 0, f)); #endif return db; |