aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/object-statements.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-11-06 18:00:43 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-11-06 18:00:43 +0200
commit5daaa1a6d9c8f5d3a4ad3d7009df564bc6506424 (patch)
treeb96d205208587208a4e443be192fe264d2f53d57 /odb/mysql/object-statements.cxx
parent6fd2fb44263eb6704905cddcc607462c21c5e687 (diff)
Add support for container persistence
Generalize statements that were used for persisting objects to work for both objects and containers. Implement a cache for container statements.
Diffstat (limited to 'odb/mysql/object-statements.cxx')
-rw-r--r--odb/mysql/object-statements.cxx17
1 files changed, 17 insertions, 0 deletions
diff --git a/odb/mysql/object-statements.cxx b/odb/mysql/object-statements.cxx
new file mode 100644
index 0000000..f732fb8
--- /dev/null
+++ b/odb/mysql/object-statements.cxx
@@ -0,0 +1,17 @@
+// file : odb/mysql/object-statements.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#include <odb/mysql/object-statements.hxx>
+
+namespace odb
+{
+ namespace mysql
+ {
+ object_statements_base::
+ ~object_statements_base ()
+ {
+ }
+ }
+}