aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/query.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-07-10 15:17:14 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-07-10 15:17:14 +0200
commit1568e64c2135bf245de960ae614bd3533c6d157a (patch)
treefe9d13549fe51ec95a22a3e0770e2a488fa57007 /odb/sqlite/query.ixx
parent47d783b340df91a43abc36470c78f998db0b33fe (diff)
Add support for custom database type mapping
New pragma qualifier, map, and specifiers: as, to, from. New tests: <database>/custom.
Diffstat (limited to 'odb/sqlite/query.ixx')
-rw-r--r--odb/sqlite/query.ixx10
1 files changed, 6 insertions, 4 deletions
diff --git a/odb/sqlite/query.ixx b/odb/sqlite/query.ixx
index dcd1ebe..113b376 100644
--- a/odb/sqlite/query.ixx
+++ b/odb/sqlite/query.ixx
@@ -20,20 +20,22 @@ namespace odb
template <typename T, database_type_id ID>
inline void query::
- append (val_bind<T> v)
+ append (val_bind<T> v, const char* conv)
{
add (
details::shared_ptr<query_param> (
- new (details::shared) query_param_impl<T, ID> (v)));
+ new (details::shared) query_param_impl<T, ID> (v)),
+ conv);
}
template <typename T, database_type_id ID>
inline void query::
- append (ref_bind<T> r)
+ append (ref_bind<T> r, const char* conv)
{
add (
details::shared_ptr<query_param> (
- new (details::shared) query_param_impl<T, ID> (r)));
+ new (details::shared) query_param_impl<T, ID> (r)),
+ conv);
}
}
}