diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-04-07 12:54:04 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-04-22 18:52:23 +0200 |
commit | 26f3245189b3f5d4a96587953ac1d33f45465f1d (patch) | |
tree | 3e5d0d7c6bad9213df99682ac415efaea8a55603 /qt/mysql/basic/driver.cxx | |
parent | 75f8ef2dcddea1260a31491c97a26d30a18fce6c (diff) |
Add qt/basic and qt/date-time MySQL tests
Diffstat (limited to 'qt/mysql/basic/driver.cxx')
-rw-r--r-- | qt/mysql/basic/driver.cxx | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/qt/mysql/basic/driver.cxx b/qt/mysql/basic/driver.cxx new file mode 100644 index 0000000..ee1f69d --- /dev/null +++ b/qt/mysql/basic/driver.cxx @@ -0,0 +1,58 @@ +// file : qt/mysql/basic/driver.cxx +// author : Constantin Michael <constantin@codesynthesis.com> +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +// Test Qt basic type persistence. MySQL version. +// + +#include <memory> // std::auto_ptr +#include <cassert> +#include <iostream> + +#include <odb/mysql/database.hxx> +#include <odb/mysql/transaction.hxx> + +#include <common/common.hxx> + +#include "test.hxx" +#include "test-odb.hxx" + +using namespace std; +using namespace odb::core; + +int +main (int argc, char* argv[]) +{ + try + { + auto_ptr<database> db (create_database (argc, argv)); + + object o; + o.str = "Constantin Michael"; + o.blob = QByteArray ("\0x13\0xDE\0x00\0x00\0x00\0x54\0xF2\0x6A", 8); + + // Persist. + // + { + transaction t (db->begin ()); + db->persist (o); + t.commit (); + } + + // Load.dob + // + { + transaction t (db->begin ()); + object* ol = db->load<object> (o.str); + t.commit (); + + assert (*ol == o); + } + } + catch (const odb::exception& e) + { + cerr << e.what () << endl; + return 1; + } +} |