aboutsummaryrefslogtreecommitdiff
path: root/schema/database.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-01-19 12:04:47 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-01-19 12:04:47 +0200
commit17d96bd351d0db6760706f2620b25353f1883ddd (patch)
tree00bea13508ca4f8e9add78510f36da217fabe894 /schema/database.hxx
parenta15bb990af3ed0b93483703221a89235d95db96a (diff)
Add schema example
It shows how to map persistent classes to a custom database schema.
Diffstat (limited to 'schema/database.hxx')
-rw-r--r--schema/database.hxx46
1 files changed, 46 insertions, 0 deletions
diff --git a/schema/database.hxx b/schema/database.hxx
new file mode 100644
index 0000000..c163925
--- /dev/null
+++ b/schema/database.hxx
@@ -0,0 +1,46 @@
+// file : schema/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