aboutsummaryrefslogtreecommitdiff
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
commit27f66487bc50ee5086c22f5831d72e4669fba084 (patch)
treeb4ec5777429f3fde89d2c5b149be5224f4d0efc0
parent7743e389865f12decea06eb11380f5b0e53a283b (diff)
Rename store() to update()
-rw-r--r--common/lifecycle/driver.cxx2
-rw-r--r--common/threads/driver.cxx2
-rw-r--r--libcommon/common/makefile2
-rw-r--r--mysql/truncation/driver.cxx6
-rw-r--r--tracer/object/driver.cxx8
5 files changed, 10 insertions, 10 deletions
diff --git a/common/lifecycle/driver.cxx b/common/lifecycle/driver.cxx
index a7be6d4..5518a40 100644
--- a/common/lifecycle/driver.cxx
+++ b/common/lifecycle/driver.cxx
@@ -76,7 +76,7 @@ main (int argc, char* argv[])
transaction t (db->begin_transaction ());
auto_ptr<object> o (db->load<object> (1));
o->str_ = "value 2";
- db->store (*o);
+ db->update (*o);
t.commit ();
}
diff --git a/common/threads/driver.cxx b/common/threads/driver.cxx
index 9703e29..14ca172 100644
--- a/common/threads/driver.cxx
+++ b/common/threads/driver.cxx
@@ -62,7 +62,7 @@ struct task
auto_ptr<object> o (db_.load<object> (id));
assert (o->str_ == "frist object");
o->str_ = "another value";
- db_.store (*o);
+ db_.update (*o);
t.commit ();
}
diff --git a/libcommon/common/makefile b/libcommon/common/makefile
index fccce1a..c9ecdaf 100644
--- a/libcommon/common/makefile
+++ b/libcommon/common/makefile
@@ -80,7 +80,7 @@ $(dist):
$(clean): $(common.l).o.clean \
$(common.l.cpp-options).clean \
$(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
+ $(addsuffix .cxx.clean,$(cxx_od))
$(call message,rm $$1,rm -f $$1,$(out_base)/config.h)
# Generated .gitignore.
diff --git a/mysql/truncation/driver.cxx b/mysql/truncation/driver.cxx
index eca11cd..d4e50c6 100644
--- a/mysql/truncation/driver.cxx
+++ b/mysql/truncation/driver.cxx
@@ -84,7 +84,7 @@ main (int argc, char* argv[])
o.str_ = longer_str;
transaction t (db->begin_transaction ());
- db->store (o);
+ db->update (o);
t.commit ();
}
@@ -138,14 +138,14 @@ main (int argc, char* argv[])
// This forces buffer growth in the middle of result iteration.
//
- db->store (o);
+ db->update (o);
++i;
assert (i->str_ == "test string");
o.id_ = i->id_;
o.str_ = longer_str;
- db->store (o);
+ db->update (o);
++i;
assert (i->str_ == "test string");
diff --git a/tracer/object/driver.cxx b/tracer/object/driver.cxx
index 0d84d0f..c8258b8 100644
--- a/tracer/object/driver.cxx
+++ b/tracer/object/driver.cxx
@@ -169,7 +169,7 @@ main ()
cout << "s 2" << endl;
}
- // store
+ // update
//
cout << "\ntest 010" << endl;
{
@@ -177,13 +177,13 @@ main ()
cout << "s 1" << endl;
auto_ptr<object> o1 (db.load<object> (1));
cout << "s 2" << endl;
- db.store (*o1);
+ db.update (*o1);
cout << "s 3" << endl;
t.commit ();
cout << "s 4" << endl;
}
- // store (not exist)
+ // update (not exist)
//
cout << "\ntest 011" << endl;
{
@@ -192,7 +192,7 @@ main ()
cout << "s 1" << endl;
try
{
- db.store (o1);
+ db.update (o1);
}
catch (const object_not_persistent&)
{