// file : pimpl/driver.cxx // copyright : not copyrighted - public domain #include // std::auto_ptr #include #include #include #include "database.hxx" // create_database #include "person.hxx" #include "person-odb.hxx" using namespace std; using namespace odb::core; int main (int argc, char* argv[]) { try { auto_ptr db (create_database (argc, argv)); { person john ("john@doe.com", "John Doe", 31); person jane ("jane@doe.com", "Jane Doe", 29); transaction t (db->begin ()); db->persist (john); db->persist (jane); t.commit (); } { typedef odb::result result; transaction t (db->begin ()); result r (db->query ()); for (result::iterator i (r.begin ()); i != r.end (); ++i) cout << i->name () << ' ' << i->email () << ' ' << i->age () << endl; t.commit (); } } catch (const odb::exception& e) { cerr << e.what () << endl; return 1; } }