diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-28 20:14:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-28 20:14:08 +0200 |
commit | 23bdd06c5ec17206d2dfb75ad55b3c613921dce7 (patch) | |
tree | 27585a15ff7e7d15e8c5de655571b35669e23fbd /common/template | |
parent | 125f9cbb22ab368f40b93bc3013846b812124b02 (diff) |
Rename begin_transaction() to begin()
Diffstat (limited to 'common/template')
-rw-r--r-- | common/template/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/template/driver.cxx b/common/template/driver.cxx index 495365b..8fc92b8 100644 --- a/common/template/driver.cxx +++ b/common/template/driver.cxx @@ -32,7 +32,7 @@ main (int argc, char* argv[]) // cout << "test 001" << endl; { - transaction t (db->begin_transaction ()); + transaction t (db->begin ()); t.commit (); } } |