aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/object-result.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-09-06 16:54:06 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-09-06 16:54:06 +0200
commit1b1cb92a27592da6ab9300b2c5c8384f7588e2af (patch)
tree2c4a92f14c303ff3aaced4e7b073f7180c0c5d6a /odb/sqlite/object-result.hxx
parent7d3f2b0badf4298bca53936d22a0a22c74538713 (diff)
Support for views; native part
Diffstat (limited to 'odb/sqlite/object-result.hxx')
-rw-r--r--odb/sqlite/object-result.hxx77
1 files changed, 77 insertions, 0 deletions
diff --git a/odb/sqlite/object-result.hxx b/odb/sqlite/object-result.hxx
new file mode 100644
index 0000000..b3dbf2b
--- /dev/null
+++ b/odb/sqlite/object-result.hxx
@@ -0,0 +1,77 @@
+// file : odb/sqlite/object-result.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_SQLITE_OBJECT_RESULT_HXX
+#define ODB_SQLITE_OBJECT_RESULT_HXX
+
+#include <odb/pre.hxx>
+
+#include <cstddef> // std::size_t
+
+#include <odb/details/shared-ptr.hxx>
+
+#include <odb/sqlite/version.hxx>
+#include <odb/sqlite/forward.hxx> // query, object_statements
+#include <odb/sqlite/result.hxx>
+#include <odb/sqlite/statement.hxx>
+
+namespace odb
+{
+ namespace sqlite
+ {
+ template <typename T>
+ class result_impl<T, class_object>:
+ public odb::result_impl<T, class_object>,
+ public result_impl_base
+ {
+ public:
+ typedef odb::result_impl<T, class_object> base_type;
+
+ typedef typename base_type::pointer_type pointer_type;
+ typedef typename base_type::pointer_traits pointer_traits;
+
+ typedef typename base_type::object_type object_type;
+ typedef typename base_type::id_type id_type;
+ typedef typename base_type::object_traits object_traits;
+
+ virtual
+ ~result_impl ();
+
+ result_impl (const query&,
+ details::shared_ptr<select_statement>,
+ object_statements<object_type>&);
+
+ virtual void
+ load (object_type&);
+
+ virtual id_type
+ load_id ();
+
+ virtual void
+ next ();
+
+ virtual void
+ cache ();
+
+ virtual std::size_t
+ size ();
+
+ using base_type::current;
+
+ private:
+ void
+ load_image ();
+
+ private:
+ object_statements<object_type>& statements_;
+ };
+ }
+}
+
+#include <odb/sqlite/object-result.txx>
+
+#include <odb/post.hxx>
+
+#endif // ODB_SQLITE_OBJECT_RESULT_HXX