aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-03-22 15:50:23 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-03-22 15:50:23 +0200
commite7bacc601f11dfe1702b036c401eecbdde9799aa (patch)
tree888a3cf6790e6c23c2cf8f4dac12fcbdf5f204f7
parentc83733757b74b0897b294d1368a0f8a0abe49184 (diff)
Cosmetic changes
-rw-r--r--odb/mysql/statement.cxx26
-rw-r--r--odb/mysql/statement.hxx14
2 files changed, 21 insertions, 19 deletions
diff --git a/odb/mysql/statement.cxx b/odb/mysql/statement.cxx
index b311dbe..c65adea 100644
--- a/odb/mysql/statement.cxx
+++ b/odb/mysql/statement.cxx
@@ -3,11 +3,12 @@
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
+#include <odb/exceptions.hxx> // object_not_persistent
+
#include <odb/mysql/mysql.hxx>
#include <odb/mysql/statement.hxx>
#include <odb/mysql/connection.hxx>
#include <odb/mysql/error.hxx>
-#include <odb/mysql/exceptions.hxx>
using namespace std;
@@ -272,13 +273,13 @@ namespace odb
update_statement::
update_statement (connection& conn,
const string& s,
- binding& id,
- binding& image)
+ binding& cond,
+ binding& data)
: statement (conn),
- id_ (id),
- id_version_ (0),
- image_ (image),
- image_version_ (0)
+ cond_ (cond),
+ cond_version_ (0),
+ data_ (data),
+ data_version_ (0)
{
conn_.clear ();
@@ -294,16 +295,15 @@ namespace odb
if (mysql_stmt_reset (stmt_))
translate_error (conn_, stmt_);
- if (image_version_ != image_.version || id_version_ != id_.version)
+ if (data_version_ != data_.version || cond_version_ != cond_.version)
{
- // Here we assume that the last element in image_.bind is the
- // id parameter.
+ // Here we assume that cond_.bind is a suffix of data_.bind.
//
- if (mysql_stmt_bind_param (stmt_, image_.bind))
+ if (mysql_stmt_bind_param (stmt_, data_.bind))
translate_error (conn_, stmt_);
- id_version_ = id_.version;
- image_version_ = image_.version;
+ cond_version_ = cond_.version;
+ data_version_ = data_.version;
}
if (mysql_stmt_execute (stmt_))
diff --git a/odb/mysql/statement.hxx b/odb/mysql/statement.hxx
index 94d097d..5266fa6 100644
--- a/odb/mysql/statement.hxx
+++ b/odb/mysql/statement.hxx
@@ -159,10 +159,12 @@ namespace odb
virtual
~update_statement ();
+ // Asssumes that cond.bind is a suffix of data.bind.
+ //
update_statement (connection& conn,
const std::string& statement,
- binding& id,
- binding& image);
+ binding& cond,
+ binding& data);
void
execute ();
@@ -171,11 +173,11 @@ namespace odb
update_statement& operator= (const update_statement&);
private:
- binding& id_;
- std::size_t id_version_;
+ binding& cond_;
+ std::size_t cond_version_;
- binding& image_;
- std::size_t image_version_;
+ binding& data_;
+ std::size_t data_version_;
};
class LIBODB_MYSQL_EXPORT delete_statement: public statement