aboutsummaryrefslogtreecommitdiff
path: root/mapping/database.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-09-23 09:32:31 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-09-23 09:32:31 +0200
commit2f17222fd6b2f3cfa251e57daf67ee58d25d6e43 (patch)
tree3122acf600ad51dcab80e5f353f81f86d616fdff /mapping/database.hxx
parentc542a0841869618f82188bc193e21a6a6972f0ba (diff)
Add the mapping example
It shows how to map between C++ value types and SQL types
Diffstat (limited to 'mapping/database.hxx')
-rw-r--r--mapping/database.hxx41
1 files changed, 41 insertions, 0 deletions
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 <boris@codesynthesis.com>
+// copyright : not copyrighted - public domain
+
+//
+// Create concrete database based on the DATABASE_* macros.
+//
+
+#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
+}