aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/statement.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-09-20 14:47:07 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-09-20 14:47:07 +0200
commita3ce8b262bf5e7da2b27ad6f367fe9315e0c0ab0 (patch)
treeb9ebf47edd99adfd1382c56c8e007c36268f3682 /odb/mysql/statement.cxx
parent03451ab37228b5be863c27f0a8dc8782826f0300 (diff)
Rename store() to update()
Diffstat (limited to 'odb/mysql/statement.cxx')
-rw-r--r--odb/mysql/statement.cxx16
1 files changed, 8 insertions, 8 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 ())