aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/statement.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-10-28 11:18:54 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-10-28 11:18:54 +0200
commitf3e83073310e5fbafb142bb8d3cd1b03ed6088e9 (patch)
treeb5dff90ee11e188a32e15defcdd7e0caa846f48e /odb/pgsql/statement.cxx
parentc83c53f3cea54b62d1d90d298dccafcda37d5297 (diff)
Implement returning of auto id using RETURNING clause in PostgreSQL
Before we used a separate SELECT lastval() query which was both inefficient and error-prone in cases where INSERT may cause triggers to override the last value.
Diffstat (limited to 'odb/pgsql/statement.cxx')
-rw-r--r--odb/pgsql/statement.cxx62
1 files changed, 40 insertions, 22 deletions
diff --git a/odb/pgsql/statement.cxx b/odb/pgsql/statement.cxx
index 671bf61..e76e081 100644
--- a/odb/pgsql/statement.cxx
+++ b/odb/pgsql/statement.cxx
@@ -11,6 +11,7 @@
#include <odb/exceptions.hxx> // object_not_persistent
+#include <odb/pgsql/pgsql-oid.hxx>
#include <odb/pgsql/statement.hxx>
#include <odb/pgsql/connection.hxx>
#include <odb/pgsql/transaction.hxx>
@@ -442,19 +443,18 @@ namespace odb
const Oid* types,
size_t types_count,
binding& data,
- native_binding& native_data)
+ native_binding& native_data,
+ bool returning)
: statement (conn, name, stmt, types, types_count),
data_ (data),
native_data_ (native_data),
- id_cached_ (false)
+ returning_ (returning)
{
}
bool insert_statement::
execute ()
{
- id_cached_ = false;
-
bind_param (native_data_, data_);
auto_handle<PGresult> h (
@@ -481,26 +481,44 @@ namespace odb
translate_error (conn_, h);
}
- return true;
- }
-
- unsigned long long insert_statement::
- id ()
- {
- if (id_cached_)
- return id_;
-
- auto_handle<PGresult> h (
- PQexecParams (conn_.handle (), "select lastval ()", 0, 0, 0, 0, 0, 1));
-
- if (!is_good_result (h))
- translate_error (conn_, h);
+ if (returning_)
+ {
+ // Get the id value that was returned using the RETURNING clause.
+ //
+ const char* v (PQgetvalue (h, 0, 0));
- id_ = endian_traits::ntoh (*reinterpret_cast<unsigned long long*> (
- PQgetvalue (h, 0, 0)));
- id_cached_ = true;
+ // While the ODB auto id type can only be INT or BIGINT, handle the
+ // SMALLINT integer in case we are dealing with a custom schema.
+ //
+ switch (PQftype (h, 0))
+ {
+ case int2_oid:
+ {
+ id_ = endian_traits::ntoh (
+ *reinterpret_cast<const unsigned short*> (v));
+ break;
+ }
+ case int4_oid:
+ {
+ id_ = endian_traits::ntoh (
+ *reinterpret_cast<const unsigned int*> (v));
+ break;
+ }
+ case int8_oid:
+ {
+ id_ = endian_traits::ntoh (
+ *reinterpret_cast<const unsigned long long*> (v));
+ break;
+ }
+ default:
+ {
+ assert (false);
+ break;
+ }
+ }
+ }
- return id_;
+ return true;
}
//