From ee570de4bd013fd2a4351d33d11539621f00bf57 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 21 Aug 2011 16:27:34 +0200 Subject: Add odb::connection class This abstract class represents a connection to the database. One can use it to start a transaction or to execute a native statement out of a transaction. Before we had concrete connection classes in the database runtime libraries (e.g., odb::mysql::connection). Now these classes derive from odb::connection. --- odb/pgsql/database.cxx | 45 +++++---------------------------------------- 1 file changed, 5 insertions(+), 40 deletions(-) (limited to 'odb/pgsql/database.cxx') diff --git a/odb/pgsql/database.cxx b/odb/pgsql/database.cxx index 721e600..050961f 100644 --- a/odb/pgsql/database.cxx +++ b/odb/pgsql/database.cxx @@ -4,14 +4,11 @@ // license : GNU GPL v2; see accompanying LICENSE file #include -#include // std::atol #include -#include #include +#include #include -#include -#include #include @@ -211,43 +208,11 @@ namespace odb { } - unsigned long long database:: - execute (const char* s, std::size_t) + odb::connection* database:: + connection_ () { - if (!transaction::has_current ()) - throw not_in_transaction (); - - connection_type& c (transaction::current ().connection ()); - - result_ptr r (PQexec (c.handle (), s)); - PGresult* h (r.get ()); - - unsigned long long count (0); - - if (!is_good_result (h)) - translate_error (c, h); - else if (PGRES_TUPLES_OK == PQresultStatus (h)) - count = static_cast (PQntuples (h)); - else - { - const char* s (PQcmdTuples (h)); - - if (s[0] != '\0' && s[1] == '\0') - count = static_cast (s[0] - '0'); - else - count = static_cast (atol (s)); - } - - return count; - } - - transaction_impl* database:: - begin () - { - if (transaction::has_current ()) - throw already_in_transaction (); - - return new transaction_impl (*this); + connection_ptr c (factory_->connect ()); + return c.release (); } } } -- cgit v1.1