aboutsummaryrefslogtreecommitdiff
path: root/odb/connection.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/connection.ixx')
-rw-r--r--odb/connection.ixx14
1 files changed, 14 insertions, 0 deletions
diff --git a/odb/connection.ixx b/odb/connection.ixx
index fa2d510..fd1a624 100644
--- a/odb/connection.ixx
+++ b/odb/connection.ixx
@@ -30,6 +30,20 @@ namespace odb
return execute (st.c_str (), st.size ());
}
+ template <typename T>
+ inline prepared_query<T> connection::
+ prepare_query (const char* n, const char* q)
+ {
+ return prepare_query<T> (n, query<T> (q));
+ }
+
+ template <typename T>
+ inline prepared_query<T> connection::
+ prepare_query (const char* n, const std::string& q)
+ {
+ return prepare_query<T> (n, query<T> (q));
+ }
+
inline void connection::
tracer (tracer_type& t)
{