From 2f17222fd6b2f3cfa251e57daf67ee58d25d6e43 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 23 Sep 2010 09:32:31 +0200 Subject: Add the mapping example It shows how to map between C++ value types and SQL types --- mapping/database.hxx | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 mapping/database.hxx (limited to 'mapping/database.hxx') diff --git a/mapping/database.hxx b/mapping/database.hxx new file mode 100644 index 0000000..d668b89 --- /dev/null +++ b/mapping/database.hxx @@ -0,0 +1,41 @@ +// file : mapping/database.hxx +// author : Boris Kolpackov +// copyright : not copyrighted - public domain + +// +// Create concrete database based on the DATABASE_* macros. +// + +#include +#include // std::auto_ptr +#include // std::exit +#include + +#include + +#if defined(DATABASE_MYSQL) +# include +#endif + +inline std::auto_ptr +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 (new mysql::database (argc, argv)); +#endif +} -- cgit v1.1