// file : pgsql/types/driver.cxx // author : Constantin Michael // copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file // Test PostgreSQL type conversion. // #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 (1); o.bool_ = true; o.short_ = 12345; o.int_ = -123456; o.long_long_ = 123456; o.float_ = 1.123F; o.float8_ = 1.123; o.double_ = 1.123; o.date_ = 4015; o.time_ = 48180000000; o.timestamp_ = 346896000; string short_str (128, 's'); string medium_str (250, 'm'); string long_str (2040, 'l'); o.char_ = short_str; o.varchar_ = medium_str; o.text_ = long_str; buffer long_buf (long_str.c_str (), long_str.size ()); o.bytea_ = long_buf; unsigned char varbit_buf[8] = {1, 3, 1, 3, 1, 3, 1, 3}; o.varbit_.size = 52; o.varbit_.ubuffer_ = ubuffer (varbit_buf, 8); o.bit_.a = 0; o.bit_.b = 1; o.bit_.c = 0; o.bit_.d = 1; o.enum_ = green; // Persist. // { transaction t (db->begin ()); db->persist (o); t.commit (); } // Load. // { transaction t (db->begin ()); auto_ptr o1 (db->load (1)); t.commit (); assert (o == *o1); } } catch (const odb::exception& e) { cerr << e.what () << endl; return 1; } }