aboutsummaryrefslogtreecommitdiff
path: root/common/schema/embedded/order/driver.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-02-07 17:52:49 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-02-07 17:52:49 +0200
commit7dbf58f9486fb3b3a021bbfab9df03af5a8f0fb3 (patch)
treebdf0897bd03cb578d932257a70ad98314c7e7821 /common/schema/embedded/order/driver.cxx
parent14cc151f37a089784f8db162bb6f419ec8d1aecb (diff)
Use multi-pass table creation in MySQL
This deals with table creation order and circular dependencies. Unfortunately, there doesn't seem to be a way in MySQL to drop a foreign key only if it exists without resorting to stored procedures.
Diffstat (limited to 'common/schema/embedded/order/driver.cxx')
-rw-r--r--common/schema/embedded/order/driver.cxx60
1 files changed, 60 insertions, 0 deletions
diff --git a/common/schema/embedded/order/driver.cxx b/common/schema/embedded/order/driver.cxx
new file mode 100644
index 0000000..7503cf5
--- /dev/null
+++ b/common/schema/embedded/order/driver.cxx
@@ -0,0 +1,60 @@
+// file : common/schema/embedded/order/driver.cxx
+// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+// Test statement execution order in embedded schemas.
+//
+
+#include <memory> // std::auto_ptr
+#include <cassert>
+#include <iostream>
+
+#include <odb/database.hxx>
+#include <odb/transaction.hxx>
+#include <odb/schema-catalog.hxx>
+
+#include <common/config.hxx> // DATABASE_XXX
+#include <common/common.hxx>
+
+#include "test1.hxx"
+#include "test2.hxx"
+
+#include "test1-odb.hxx"
+#include "test2-odb.hxx"
+
+using namespace std;
+using namespace odb::core;
+
+int
+main (int argc, char* argv[])
+{
+ try
+ {
+ auto_ptr<database> db (create_database (argc, argv));
+
+ // Create the database schema.
+ //
+ {
+ connection_ptr c (db->connection ());
+
+ // Temporarily disable foreign key constraints for SQLite.
+ //
+#if defined(DATABASE_SQLITE)
+ c->execute ("PRAGMA foreign_keys=OFF");
+#endif
+
+ transaction t (c->begin ());
+ schema_catalog::create_schema (*db);
+ t.commit ();
+
+#if defined(DATABASE_SQLITE)
+ c->execute ("PRAGMA foreign_keys=ON");
+#endif
+ }
+ }
+ catch (const odb::exception& e)
+ {
+ cerr << e.what () << endl;
+ return 1;
+ }
+}