From 8ce82c7b864d7299008dd413417a5823a7d747f5 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 28 Sep 2010 20:14:08 +0200 Subject: Rename begin_transaction() to begin() --- hello/driver.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'hello') diff --git a/hello/driver.cxx b/hello/driver.cxx index e7bc114..ad4ef57 100644 --- a/hello/driver.cxx +++ b/hello/driver.cxx @@ -32,7 +32,7 @@ main (int argc, char* argv[]) person jane ("Jane", "Doe", 32); person joe ("Joe", "Dirt", 30); - transaction t (db->begin_transaction ()); + transaction t (db->begin ()); db->persist (john); db->persist (jane); @@ -53,7 +53,7 @@ main (int argc, char* argv[]) // Say hello to those over 30. // { - transaction t (db->begin_transaction ()); + transaction t (db->begin ()); result r (db->query (query::age > 30)); @@ -68,7 +68,7 @@ main (int argc, char* argv[]) // Joe Dirt just had a birthday, so update his age. // { - transaction t (db->begin_transaction ()); + transaction t (db->begin ()); auto_ptr joe (db->load (joe_id)); joe->age (joe->age () + 1); @@ -81,7 +81,7 @@ main (int argc, char* argv[]) // /* { - transaction t (db->begin_transaction ()); + transaction t (db->begin ()); result r (db->query (query::first == "Joe" && query::last == "Dirt")); @@ -103,7 +103,7 @@ main (int argc, char* argv[]) // John Doe is no longer in our database. // { - transaction t (db->begin_transaction ()); + transaction t (db->begin ()); db->erase (john_id); t.commit (); } -- cgit v1.1