diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-07-10 15:09:14 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-07-10 15:09:14 +0200 |
commit | 7ba8d1469e331f07040352c069cf7b9d24ac57a3 (patch) | |
tree | 3fbd5ed0252f3d972d4838a8fc7197071a9f15fe /oracle | |
parent | 66732b210c512b8dfe7e97d3ab6522cf3be72a72 (diff) |
Remove unneeded third argument to create_database()
Diffstat (limited to 'oracle')
-rw-r--r-- | oracle/native/driver.cxx | 2 | ||||
-rw-r--r-- | oracle/types/driver.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/oracle/native/driver.cxx b/oracle/native/driver.cxx index 33d18e0..0e90ff0 100644 --- a/oracle/native/driver.cxx +++ b/oracle/native/driver.cxx @@ -22,7 +22,7 @@ main (int argc, char* argv[]) { try { - auto_ptr<database> db (create_database (argc, argv, false)); + auto_ptr<database> db (create_database (argc, argv)); // Create the database schema. // diff --git a/oracle/types/driver.cxx b/oracle/types/driver.cxx index d34a882..b1ca3ad 100644 --- a/oracle/types/driver.cxx +++ b/oracle/types/driver.cxx @@ -28,7 +28,7 @@ main (int argc, char* argv[]) // Create an Oracle database instance, setting both the client database // and national character set to UTF-8. // - auto_ptr<database> db (create_database (argc, argv, false)); + auto_ptr<database> db (create_database (argc, argv)); object o (1); |