From c916368432aaa67364f4e9a541ca5d264ffdb097 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/mysql/database.hxx | 62 +++++++++++++++++++++++++ odb/mysql/database.ixx | 120 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 182 insertions(+) (limited to 'odb') diff --git a/odb/mysql/database.hxx b/odb/mysql/database.hxx index af4fcfe..8d11e72 100644 --- a/odb/mysql/database.hxx +++ b/odb/mysql/database.hxx @@ -375,6 +375,68 @@ namespace odb result query (const odb::query_base&, bool cache = true); + // Query one API. + // + template + typename object_traits::pointer_type + query_one (); + + template + bool + query_one (T& object); + + template + T + query_value (); + + template + typename object_traits::pointer_type + query_one (const char*); + + template + bool + query_one (const char*, T& object); + + template + T + query_value (const char*); + + template + typename object_traits::pointer_type + query_one (const std::string&); + + template + bool + query_one (const std::string&, T& object); + + template + T + query_value (const std::string&); + + template + typename object_traits::pointer_type + query_one (const mysql::query_base&); + + template + bool + query_one (const mysql::query_base&, T& object); + + template + T + query_value (const mysql::query_base&); + + template + typename object_traits::pointer_type + query_one (const odb::query_base&); + + template + bool + query_one (const odb::query_base&, T& object); + + template + T + query_value (const odb::query_base&); + // Query preparation. // template diff --git a/odb/mysql/database.ixx b/odb/mysql/database.ixx index 475e7e1..09fc641 100644 --- a/odb/mysql/database.ixx +++ b/odb/mysql/database.ixx @@ -434,6 +434,126 @@ namespace odb } template + inline typename object_traits::pointer_type database:: + query_one () + { + return query_one (mysql::query_base ()); + } + + template + inline bool database:: + query_one (T& o) + { + return query_one (mysql::query_base (), o); + } + + template + inline T database:: + query_value () + { + return query_value (mysql::query_base ()); + } + + template + inline typename object_traits::pointer_type database:: + query_one (const char* q) + { + return query_one (mysql::query_base (q)); + } + + template + inline bool database:: + query_one (const char* q, T& o) + { + return query_one (mysql::query_base (q), o); + } + + template + inline T database:: + query_value (const char* q) + { + return query_value (mysql::query_base (q)); + } + + template + inline typename object_traits::pointer_type database:: + query_one (const std::string& q) + { + return query_one (mysql::query_base (q)); + } + + template + inline bool database:: + query_one (const std::string& q, T& o) + { + return query_one (mysql::query_base (q), o); + } + + template + inline T database:: + query_value (const std::string& q) + { + return query_value (mysql::query_base (q)); + } + + template + inline typename object_traits::pointer_type database:: + query_one (const mysql::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 mysql::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 mysql::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 (mysql::query_base (q)); + } + + template + inline bool database:: + query_one (const odb::query_base& q, T& o) + { + // Translate to native query. + // + return query_one (mysql::query_base (q), o); + } + + template + inline T database:: + query_value (const odb::query_base& q) + { + // Translate to native query. + // + return query_value (mysql::query_base (q)); + } + + template inline prepared_query database:: prepare_query (const char* n, const char* q) { -- cgit v1.1