From 521596e38974a68a60dbc8eb083cc881bb11914f Mon Sep 17 00:00:00 2001 From: Michael Shepanski Date: Tue, 4 Nov 2014 16:10:03 +1100 Subject: Implement {query,execute}_{one,value}() shortcut functions Useful in situations where the query is know to return at most one element (*_one) or exactly one element (*_value). --- odb/pgsql/database.ixx | 120 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) (limited to 'odb/pgsql/database.ixx') diff --git a/odb/pgsql/database.ixx b/odb/pgsql/database.ixx index 809e4d4..21b5729 100644 --- a/odb/pgsql/database.ixx +++ b/odb/pgsql/database.ixx @@ -429,6 +429,126 @@ namespace odb } template + inline typename object_traits::pointer_type database:: + query_one () + { + return query_one (pgsql::query_base ()); + } + + template + inline bool database:: + query_one (T& o) + { + return query_one (pgsql::query_base (), o); + } + + template + inline T database:: + query_value () + { + return query_value (pgsql::query_base ()); + } + + template + inline typename object_traits::pointer_type database:: + query_one (const char* q) + { + return query_one (pgsql::query_base (q)); + } + + template + inline bool database:: + query_one (const char* q, T& o) + { + return query_one (pgsql::query_base (q), o); + } + + template + inline T database:: + query_value (const char* q) + { + return query_value (pgsql::query_base (q)); + } + + template + inline typename object_traits::pointer_type database:: + query_one (const std::string& q) + { + return query_one (pgsql::query_base (q)); + } + + template + inline bool database:: + query_one (const std::string& q, T& o) + { + return query_one (pgsql::query_base (q), o); + } + + template + inline T database:: + query_value (const std::string& q) + { + return query_value (pgsql::query_base (q)); + } + + template + inline typename object_traits::pointer_type database:: + query_one (const pgsql::query_base& q) + { + // T is always object_type. We also don't need to check for transaction + // here; object_traits::query () does this. + // + return query_one_ (q); + } + + template + inline bool database:: + query_one (const pgsql::query_base& q, T& o) + { + // T is always object_type. We also don't need to check for transaction + // here; object_traits::query () does this. + // + return query_one_ (q, o); + } + + template + inline T database:: + query_value (const pgsql::query_base& q) + { + // T is always object_type. We also don't need to check for transaction + // here; object_traits::query () does this. + // + return query_value_ (q); + } + + template + inline typename object_traits::pointer_type database:: + query_one (const odb::query_base& q) + { + // Translate to native query. + // + return query_one (pgsql::query_base (q)); + } + + template + inline bool database:: + query_one (const odb::query_base& q, T& o) + { + // Translate to native query. + // + return query_one (pgsql::query_base (q), o); + } + + template + inline T database:: + query_value (const odb::query_base& q) + { + // Translate to native query. + // + return query_value (pgsql::query_base (q)); + } + + template inline prepared_query database:: prepare_query (const char* n, const char* q) { -- cgit v1.1