aboutsummaryrefslogtreecommitdiff
path: root/qt/mssql/basic/driver.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-01-14 12:52:04 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-01-20 15:45:46 +0200
commitfb3f565e804603c66457514e20018434c989883e (patch)
treea983ef53d6ab12a3075f62cd6bfbd9426d45f3d0 /qt/mssql/basic/driver.cxx
parent0da5345276f1e655e5e099fdf6280466e3a5dda4 (diff)
Basic Qt profile implementation for SQL Server
Diffstat (limited to 'qt/mssql/basic/driver.cxx')
-rw-r--r--qt/mssql/basic/driver.cxx67
1 files changed, 67 insertions, 0 deletions
diff --git a/qt/mssql/basic/driver.cxx b/qt/mssql/basic/driver.cxx
new file mode 100644
index 0000000..25ea172
--- /dev/null
+++ b/qt/mssql/basic/driver.cxx
@@ -0,0 +1,67 @@
+// file : qt/mssql/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. SQL Server version.
+//
+
+#include <memory> // std::auto_ptr
+#include <cassert>
+#include <iostream>
+
+#include <QtCore/QCoreApplication>
+
+#include <odb/mssql/database.hxx>
+#include <odb/mssql/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[])
+{
+ QCoreApplication app (argc, argv);
+
+ try
+ {
+ auto_ptr<database> db (create_database (argc, argv));
+
+ object o;
+ o.id_ = "object 1";
+ o.sstr_ = QString (512, 's');
+ o.lstr_ = QString (65000, 'l'); // Test temp buffer boundary.
+ o.snstr_ = QString (512, QChar (0x1234));
+ o.lnstr_ = QString (65536, QChar (0x2345));
+ o.sbuf_ = QByteArray (512, 0x01);
+ o.lbuf_ = QByteArray (65536, 0x02);
+
+ // Persist.
+ //
+ {
+ transaction t (db->begin ());
+ db->persist (o);
+ t.commit ();
+ }
+
+ // Load.
+ //
+ {
+ transaction t (db->begin ());
+ object* ol = db->load<object> (o.id_);
+ t.commit ();
+
+ assert (*ol == o);
+ }
+ }
+ catch (const odb::exception& e)
+ {
+ cerr << e.what () << endl;
+ return 1;
+ }
+}