// file : boost/oracle/template/driver.cxx // copyright : Copyright (c) 2009-2015 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file // PLACE TEST DESCRIPTION HERE // #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)); { transaction t (db->begin ()); t.commit (); } } catch (const odb::exception& e) { cerr << e.what () << endl; return 1; } }