summaryrefslogtreecommitdiff
path: root/libodb-sqlite/odb/sqlite/query.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'libodb-sqlite/odb/sqlite/query.ixx')
-rw-r--r--libodb-sqlite/odb/sqlite/query.ixx46
1 files changed, 46 insertions, 0 deletions
diff --git a/libodb-sqlite/odb/sqlite/query.ixx b/libodb-sqlite/odb/sqlite/query.ixx
new file mode 100644
index 0000000..00e9b66
--- /dev/null
+++ b/libodb-sqlite/odb/sqlite/query.ixx
@@ -0,0 +1,46 @@
+// file : odb/sqlite/query.ixx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+namespace odb
+{
+ namespace sqlite
+ {
+ inline void query_base::
+ init_parameters () const
+ {
+ return parameters_->init ();
+ }
+
+ inline binding& query_base::
+ parameters_binding () const
+ {
+ return parameters_->binding ();
+ }
+
+ inline const details::shared_ptr<query_params>& query_base::
+ parameters () const
+ {
+ return parameters_;
+ }
+
+ template <typename T, database_type_id ID>
+ inline void query_base::
+ append (val_bind<T> v, const char* conv)
+ {
+ append (
+ details::shared_ptr<query_param> (
+ new (details::shared) query_param_impl<T, ID> (v)),
+ conv);
+ }
+
+ template <typename T, database_type_id ID>
+ inline void query_base::
+ append (ref_bind<T> r, const char* conv)
+ {
+ append (
+ details::shared_ptr<query_param> (
+ new (details::shared) query_param_impl<T, ID> (r)),
+ conv);
+ }
+ }
+}