diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-01 11:56:33 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-01 11:56:33 +0200 |
commit | 5a14aa4978cca949f3d07561ba35f8fd3af76ab2 (patch) | |
tree | 4c5e54ca7daf83130fd06f16db56b517ea254ce6 /schema/embedded/database.hxx | |
parent | 2ef165437ce47f50110a9b230f302c5cd5fde1d4 (diff) |
Add support for embedded database schemas
New options: --schema-format, --default-schema. New example: schema/embedded.
Diffstat (limited to 'schema/embedded/database.hxx')
-rw-r--r-- | schema/embedded/database.hxx | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/schema/embedded/database.hxx b/schema/embedded/database.hxx new file mode 100644 index 0000000..7483f52 --- /dev/null +++ b/schema/embedded/database.hxx @@ -0,0 +1,46 @@ +// file : schema/embedded/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::core; + + if (argc > 1 && argv[1] == string ("--help")) + { + cerr << "Usage: " << argv[0] << " [options]" << endl + << "Options:" << endl; + +#if defined(DATABASE_MYSQL) + odb::mysql::database::print_usage (cerr); +#endif + + exit (0); + } + +#if defined(DATABASE_MYSQL) + return auto_ptr<database> (new odb::mysql::database (argc, argv)); +#endif +} + +#endif // DATABASE_HXX |