diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-04 14:02:12 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-04 14:02:12 +0200 |
commit | acba5c43f189dfddef4992371fadaa6f019a8027 (patch) | |
tree | a10ac88a6ab8f84c33a3a19cf092feddb802ee7f /boost/database.hxx | |
parent | b3fa74d407c8a7bdc39c381137612a2d94c58831 (diff) |
Add Boost profile example
Diffstat (limited to 'boost/database.hxx')
-rw-r--r-- | boost/database.hxx | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/boost/database.hxx b/boost/database.hxx new file mode 100644 index 0000000..9fd9478 --- /dev/null +++ b/boost/database.hxx @@ -0,0 +1,46 @@ +// file : boost/database.hxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : not copyrighted - public domain + +// +// Create concrete database instance based on the DATABASE_* macros. +// + +#ifndef DATABASE_HXX +#define DATABASE_HXX + +#include <string> +#include <memory> // std::auto_ptr +#include <cstdlib> // std::exit +#include <iostream> + +#include <odb/database.hxx> + +#if defined(DATABASE_MYSQL) +# include <odb/mysql/database.hxx> +#endif + +inline std::auto_ptr<odb::database> +create_database (int& argc, char* argv[]) +{ + using namespace std; + using namespace odb; + + if (argc > 1 && argv[1] == string ("--help")) + { + cerr << "Usage: " << argv[0] << " [options]" << endl + << "Options:" << endl; + +#if defined(DATABASE_MYSQL) + mysql::database::print_usage (cerr); +#endif + + exit (0); + } + +#if defined(DATABASE_MYSQL) + return auto_ptr<database> (new mysql::database (argc, argv)); +#endif +} + +#endif // DATABASE_HXX |