summaryrefslogtreecommitdiff
path: root/odb-tests/mysql/custom/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb-tests/mysql/custom/test.hxx')
-rw-r--r--odb-tests/mysql/custom/test.hxx54
1 files changed, 54 insertions, 0 deletions
diff --git a/odb-tests/mysql/custom/test.hxx b/odb-tests/mysql/custom/test.hxx
new file mode 100644
index 0000000..82cc59d
--- /dev/null
+++ b/odb-tests/mysql/custom/test.hxx
@@ -0,0 +1,54 @@
+// file : mysql/custom/test.hxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef TEST_HXX
+#define TEST_HXX
+
+#include <vector>
+
+#include <odb/core.hxx>
+
+// Map GEOMETRY MySQL type to the point C++ struct. The other half
+// of this mapping is in traits.hxx (value_traits<point, id_string>).
+//
+#pragma db map type("GEOMETRY") \
+ as("VARCHAR(256)") \
+ to("ST_GeomFromText((?))") \
+ from("ST_AsText((?))")
+
+#pragma db value type("GEOMETRY")
+struct point
+{
+ point () {}
+ point (double x_, double y_): x (x_), y (y_) {}
+
+ double x;
+ double y;
+};
+
+inline bool
+operator== (const point& a, const point& b)
+{
+ return a.x == b.x && a.y == b.y;
+}
+
+#pragma db object
+struct object
+{
+ object () {}
+ object (unsigned long id_) : id (id_) {}
+
+ #pragma db id
+ unsigned long id;
+
+ point p;
+ std::vector<point> pv;
+
+ bool
+ operator== (const object& y) const
+ {
+ return id == y.id && p == y.p && pv == y.pv;
+ }
+};
+
+#endif // TEST_HXX