From a3ce8b262bf5e7da2b27ad6f367fe9315e0c0ab0 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 20 Sep 2010 14:47:07 +0200 Subject: Rename store() to update() --- odb/mysql/statement.cxx | 16 ++++++++-------- odb/mysql/statement.hxx | 36 ++++++++++++++++++------------------ 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/odb/mysql/statement.cxx b/odb/mysql/statement.cxx index 816843d..457c4bd 100644 --- a/odb/mysql/statement.cxx +++ b/odb/mysql/statement.cxx @@ -394,16 +394,16 @@ namespace odb // update_statement // - store_statement:: - ~store_statement () + update_statement:: + ~update_statement () { } - store_statement:: - store_statement (connection& conn, - const string& s, - binding& id, - binding& image) + update_statement:: + update_statement (connection& conn, + const string& s, + binding& id, + binding& image) : statement (conn), id_ (id), id_version_ (0), @@ -417,7 +417,7 @@ namespace odb throw database_exception (stmt_); } - void store_statement:: + void update_statement:: execute () { if (statement* a = conn_.active ()) diff --git a/odb/mysql/statement.hxx b/odb/mysql/statement.hxx index bcba2c6..d0c40d6 100644 --- a/odb/mysql/statement.hxx +++ b/odb/mysql/statement.hxx @@ -186,22 +186,22 @@ namespace odb std::size_t image_version_; }; - class LIBODB_MYSQL_EXPORT store_statement: public statement + class LIBODB_MYSQL_EXPORT update_statement: public statement { public: virtual - ~store_statement (); + ~update_statement (); - store_statement (connection& conn, - const std::string& statement, - binding& id, - binding& image); + update_statement (connection& conn, + const std::string& statement, + binding& id, + binding& image); void execute (); private: - store_statement (const store_statement&); - store_statement& operator= (const store_statement&); + update_statement (const update_statement&); + update_statement& operator= (const update_statement&); private: binding& id_; @@ -263,7 +263,7 @@ namespace odb typedef mysql::persist_statement persist_statement_type; typedef mysql::find_statement find_statement_type; - typedef mysql::store_statement store_statement_type; + typedef mysql::update_statement update_statement_type; typedef mysql::erase_statement erase_statement_type; object_statements (connection&); @@ -323,18 +323,18 @@ namespace odb return *find_; } - store_statement_type& - store_statement () + update_statement_type& + update_statement () { - if (store_ == 0) - store_.reset ( - new (details::shared) store_statement_type ( + if (update_ == 0) + update_.reset ( + new (details::shared) update_statement_type ( conn_, - object_traits::store_statement, + object_traits::update_statement, id_image_binding_, image_binding_)); - return *store_; + return *update_; } erase_statement_type& @@ -355,7 +355,7 @@ namespace odb object_statements& operator= (const object_statements&); private: - // The last element is the id parameter. The store statement + // The last element is the id parameter. The update statement // depends on this being one contiguous arrays. // MYSQL_BIND image_bind_[object_traits::column_count + 1]; @@ -369,7 +369,7 @@ namespace odb details::shared_ptr persist_; details::shared_ptr find_; - details::shared_ptr store_; + details::shared_ptr update_; details::shared_ptr erase_; }; -- cgit v1.1