aboutsummaryrefslogtreecommitdiff
path: root/qt/mysql/core/driver.cxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-04-07 12:54:04 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-04-22 18:52:23 +0200
commit26f3245189b3f5d4a96587953ac1d33f45465f1d (patch)
tree3e5d0d7c6bad9213df99682ac415efaea8a55603 /qt/mysql/core/driver.cxx
parent75f8ef2dcddea1260a31491c97a26d30a18fce6c (diff)
Add qt/basic and qt/date-time MySQL tests
Diffstat (limited to 'qt/mysql/core/driver.cxx')
-rw-r--r--qt/mysql/core/driver.cxx58
1 files changed, 0 insertions, 58 deletions
diff --git a/qt/mysql/core/driver.cxx b/qt/mysql/core/driver.cxx
deleted file mode 100644
index 3c693a0..0000000
--- a/qt/mysql/core/driver.cxx
+++ /dev/null
@@ -1,58 +0,0 @@
-// file : qt/mysql/core/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 core 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));
-
- person p1;
- p1.name = "Constantin Michael";
- p1.date_of_birth.setDate (1979, 03, 07);
-
- // Persist.
- //
- {
- transaction t (db->begin ());
- db->persist (p1);
- t.commit ();
- }
-
- // Load.
- //
- {
- transaction t (db->begin ());
- person* pl = db->load<person> (p1.name);
- t.commit ();
-
- assert (*pl == p1);
- }
- }
- catch (const odb::exception& e)
- {
- cerr << e.what () << endl;
- return 1;
- }
-}