// file : evolution/drop-foreign-key/driver.cxx // copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file // Test dropping a foreign key. // #include // std::auto_ptr #include #include #include #include #include #include #include "test2.hxx" #include "test3.hxx" #include "test2-odb.hxx" #include "test3-odb.hxx" using namespace std; using namespace odb::core; int main (int argc, char* argv[]) { try { auto_ptr db (create_database (argc, argv, false)); // SQLite doesn't support dropping of foreign keys. // #ifndef DATABASE_SQLITE bool embedded (schema_catalog::exists (*db)); // 1 - base version // 2 - migration // 3 - current version // unsigned short pass (*argv[argc - 1] - '0'); switch (pass) { case 1: { using namespace v2; if (embedded) { transaction t (db->begin ()); schema_catalog::drop_schema (*db); schema_catalog::create_schema (*db, "", false); schema_catalog::migrate_schema (*db, 2); t.commit (); } object o (1); o.o1 = new object (2); o.o2 = new object (3); { transaction t (db->begin ()); db->persist (o.o1); db->persist (o.o2); db->persist (o); t.commit (); } // The foreign key constraint is there. // try { object o (11); o.o1 = new object (12); o.o2 = new object (13); transaction t (db->begin ()); db->persist (o); assert (false); } catch (const odb::exception& ) {} break; } case 2: { using namespace v3; if (embedded) { transaction t (db->begin ()); schema_catalog::migrate_schema_pre (*db, 3); t.commit (); } // The data is still there but the constraints are gone. // { transaction t (db->begin ()); auto_ptr p (db->load (1)); assert (p->o1 == 2); assert (p->o2 == 3); db->erase (p->o1); db->erase (p->o2); t.commit (); } if (embedded) { transaction t (db->begin ()); schema_catalog::migrate_schema_post (*db, 3); t.commit (); } break; } case 3: { using namespace v3; { transaction t (db->begin ()); auto_ptr p (db->load (1)); assert (p->o1 == 2); assert (p->o2 == 3); t.commit (); } break; } default: { cerr << "unknown pass number '" << argv[argc - 1] << "'" << endl; return 1; } } #endif // DATABASE_SQLITE } catch (const odb::exception& e) { cerr << e.what () << endl; return 1; } }