// file : mysql/types/driver.cxx // author : Boris Kolpackov // copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file // Test MySQL 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.schar_ = -123; o.uchar_ = 123; o.short_ = -12345; o.ushort_ = 12345; o.mint_ = -123456; o.umint_ = 123456; o.int_ = -123456; o.uint_ = 123456; o.long_long_ = -123456; o.ulong_long_ = 123456; o.float_ = 1.123F; o.float8_ = 1.123; o.double_ = 1.123; o.decimal_ = "123.456"; o.date_ = date_time (false, 2010, 8, 29, 0, 0, 0); o.time_ = date_time (true, 0, 0, 0, 12, 26, 59); o.date_time_ = date_time (false, 2010, 8, 29, 12, 26, 59); o.timestamp_ = date_time (false, 2010, 8, 29, 12, 26, 59); o.year_ = 2010; string short_str (128, 's'); string medium_str (250, 'm'); string long_str (2040, 'l'); const char* sb (short_str.c_str ()), *se (sb + short_str.size ()); const char* mb (medium_str.c_str ()), *me (mb + medium_str.size ()); const char* lb (long_str.c_str ()), *le (lb + long_str.size ()); o.char_ = short_str; o.binary_.assign (sb, se); o.varchar_ = medium_str; o.varbinary_.assign (mb, me); o.tinytext_ = short_str; o.tinyblob_.assign (sb, se); o.text_ = long_str; o.blob_.assign (lb, le); o.mediumtext_ = long_str; o.mediumblob_.assign (lb, le); o.longtext_ = long_str; o.longblob_.assign (lb, le); o.bit_.a = 1; o.bit_.b = 0; o.bit_.c = 0; o.bit_.d = 1; o.enum_def_ = green; o.enum_cst_ = blue; o.enum_str_ = "green"; o.set_.insert ("green"); o.set_.insert ("red"); o.set_.insert ("blue"); { transaction t (db->begin ()); db->persist (o); t.commit (); } // // { 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; } }