// file : common/relationship/on-delete/driver.cxx // copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file // Test ON DELETE functionality. // #include // std::auto_ptr #include #include #include #include #include #include "test.hxx" #include "test-odb.hxx" using namespace std; using namespace odb::core; int main (int argc, char* argv[]) { try { auto_ptr db (create_database (argc, argv)); object o; cascade c; c.p = &o; cascade_cont cc; cc.p.push_back (&o); set_null n; n.p = &o; set_null_cont nc; nc.p.push_back (&o); { transaction t (db->begin ()); db->persist (o); db->persist (c); db->persist (cc); db->persist (n); db->persist (nc); t.commit (); } { transaction t (db->begin ()); db->erase (o); t.commit (); } { transaction t (db->begin ()); assert (db->find (c.id) == 0); auto_ptr pcc (db->load (cc.id)); assert (pcc->p.empty ()); auto_ptr pn (db->load (n.id)); assert (pn->p == 0); auto_ptr pnc (db->load (nc.id)); assert (pnc->p.size () == 1 && pnc->p[0] == 0); t.commit (); } } catch (const odb::exception& e) { cerr << e.what () << endl; return 1; } }