summaryrefslogtreecommitdiff
path: root/common/schema/embedded/basics/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/schema/embedded/basics/driver.cxx')
-rw-r--r--common/schema/embedded/basics/driver.cxx59
1 files changed, 0 insertions, 59 deletions
diff --git a/common/schema/embedded/basics/driver.cxx b/common/schema/embedded/basics/driver.cxx
deleted file mode 100644
index 7ba2bce..0000000
--- a/common/schema/embedded/basics/driver.cxx
+++ /dev/null
@@ -1,59 +0,0 @@
-// file : common/schema/embedded/basics/driver.cxx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-// Test basic embedded schema functionality.
-//
-
-#include <memory> // std::unique_ptr
-#include <iostream>
-
-#include <odb/database.hxx>
-#include <odb/transaction.hxx>
-#include <odb/schema-catalog.hxx>
-
-#include <libcommon/common.hxx>
-
-#include "test.hxx"
-#include "test-odb.hxx"
-
-#undef NDEBUG
-#include <cassert>
-
-using namespace std;
-using namespace odb::core;
-
-int
-main (int argc, char* argv[])
-{
- try
- {
- unique_ptr<database> db (create_database (argc, argv, false));
-
- // Create the database schema.
- //
- {
- connection_ptr c (db->connection ());
-
- // Temporarily disable foreign key constraints for SQLite.
- //
- if (db->id () == odb::id_sqlite)
- c->execute ("PRAGMA foreign_keys=OFF");
-
- assert (schema_catalog::exists (*db, "test"));
- assert (!schema_catalog::exists (*db, "test1"));
- assert (!schema_catalog::exists (*db, ""));
-
- transaction t (c->begin ());
- schema_catalog::create_schema (*db, "test");
- t.commit ();
-
- if (db->id () == odb::id_sqlite)
- c->execute ("PRAGMA foreign_keys=ON");
- }
- }
- catch (const odb::exception& e)
- {
- cerr << e.what () << endl;
- return 1;
- }
-}