summaryrefslogtreecommitdiff
path: root/odb/sqlite/query.ixx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-24 19:01:19 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-24 19:01:19 +0300
commite5d0186db99492a139237067bab841a5b83463af (patch)
tree61719595e998314e58383c5081da16d7457a63e7 /odb/sqlite/query.ixx
parentc53136bd7d266fccaca679d0471dd8ac0ce91373 (diff)
Turn libodb-sqlite repository into package for muti-package repositorylibodb-sqlite
Diffstat (limited to 'odb/sqlite/query.ixx')
-rw-r--r--odb/sqlite/query.ixx46
1 files changed, 0 insertions, 46 deletions
diff --git a/odb/sqlite/query.ixx b/odb/sqlite/query.ixx
deleted file mode 100644
index 00e9b66..0000000
--- a/odb/sqlite/query.ixx
+++ /dev/null
@@ -1,46 +0,0 @@
-// 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);
- }
- }
-}