aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/result.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-03-25 13:04:55 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-03-25 13:04:55 +0200
commitb5d76bf8ab11e73b260cbc4343c1f947c0da2699 (patch)
treee9221606eb5c4478e4f11ff14c032b8ba81c0c4a /odb/sqlite/result.cxx
parent5d084dcd0f24237486e18f024fbbb14c13b8bffe (diff)
Query support
Diffstat (limited to 'odb/sqlite/result.cxx')
-rw-r--r--odb/sqlite/result.cxx18
1 files changed, 18 insertions, 0 deletions
diff --git a/odb/sqlite/result.cxx b/odb/sqlite/result.cxx
new file mode 100644
index 0000000..7e4116f
--- /dev/null
+++ b/odb/sqlite/result.cxx
@@ -0,0 +1,18 @@
+// file : odb/sqlite/result.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#include <odb/sqlite/result.hxx>
+
+namespace odb
+{
+ namespace sqlite
+ {
+ result_impl_base::
+ result_impl_base (const query& q, details::shared_ptr<select_statement> s)
+ : params_ (q.parameters ()), statement_ (s)
+ {
+ }
+ }
+}