aboutsummaryrefslogtreecommitdiff
path: root/qt/mysql/core
diff options
context:
space:
mode:
Diffstat (limited to 'qt/mysql/core')
-rw-r--r--qt/mysql/core/driver.cxx58
-rw-r--r--qt/mysql/core/makefile114
-rw-r--r--qt/mysql/core/test.hxx40
-rw-r--r--qt/mysql/core/test.std0
4 files changed, 0 insertions, 212 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;
- }
-}
diff --git a/qt/mysql/core/makefile b/qt/mysql/core/makefile
deleted file mode 100644
index 67f2e94..0000000
--- a/qt/mysql/core/makefile
+++ /dev/null
@@ -1,114 +0,0 @@
-# file : qt/mysql/core/makefile
-# author : Constantin Michael <constantin@codesynthesis.com>
-# copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o) $(odb_hdr:.hxx=-odb.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-driver := $(out_base)/driver
-dist := $(out_base)/.dist
-test := $(out_base)/.test
-clean := $(out_base)/.clean
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options)
-
-genf := $(addprefix $(odb_hdr:.hxx=-odb),.hxx .ixx .cxx) $(odb_hdr:.hxx=.sql)
-gen := $(addprefix $(out_base)/,$(genf))
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database mysql --profile qt \
---generate-schema
-$(gen): cpp_options := -I$(out_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/mysql/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) $(name)-vc9.vcproj \
-$(name)-vc10.vcxproj $(name)-vc10.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc9proj,../template/template-vc9.vcproj,$(name)-vc9.vcproj)
- $(call meta-vc10proj,../template/template-vc10.vcxproj,$(name)-vc10.vcxproj)
-
-# Test.
-#
-$(test): $(driver) $(src_base)/test.std
- $(call message,sql $$1,$(dcf_root)/db-driver $$1, $(src_base)/test.sql)
- $(call message,test $<,$< --options-file $(dcf_root)/db.options \
->$(out_base)/test.out)
- $(call message,,diff -u $(src_base)/test.std $(out_base)/test.out)
- $(call message,,rm -f $(out_base)/test.out)
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addprefix $(out_base)/,$(odb_hdr:.hxx=-odb.cxx.hxx.clean))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(odb_rules))
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/mysql/core/test.hxx b/qt/mysql/core/test.hxx
deleted file mode 100644
index cc8e02d..0000000
--- a/qt/mysql/core/test.hxx
+++ /dev/null
@@ -1,40 +0,0 @@
-// file : qt/mysql/core/test.hxx
-// author : Constantin Michael <constantin@codesynthesis.com>
-// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef TEST_HXX
-#define TEST_HXX
-
-#include <QString>
-#include <QDateTime>
-
-#pragma db object
-struct time_punchcard
-{
- #pragma db id auto
- unsigned long id;
-
- QDateTime date_time;
-};
-
-#pragma db object
-struct person
-{
- bool
- operator== (const person& x) const
- {
- return name == x.name &&
- date_of_birth == x.date_of_birth &&
- time_of_birth == x.time_of_birth;
- }
-
- #pragma db id
- QString name;
-
- #pragma db type("DATE NOT NULL")
- QDate date_of_birth;
- QTime time_of_birth;
-};
-
-#endif // TEST_HXX
diff --git a/qt/mysql/core/test.std b/qt/mysql/core/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/mysql/core/test.std
+++ /dev/null