aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-08-14 09:37:06 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2014-11-25 06:47:21 +0200
commit55b36b8297ef9aac9e4ccc7b98f8649534ee0ac1 (patch)
treee9f0d22285d7fc9ad814b75eac9d587c6d630995 /doc
parent19ba3497c0788f02fc417f441d87c96ce23f9446 (diff)
Implement bulk database operation support for Oracle and SQL Server
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.xhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.xhtml b/doc/manual.xhtml
index 13eb954..c89cb28 100644
--- a/doc/manual.xhtml
+++ b/doc/manual.xhtml
@@ -12939,7 +12939,7 @@ main ()
{
transaction t (db.begin ());
schema_catalog::migrate (db);
- t.end ();
+ t.commit ();
}
...