aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-11-18 11:33:28 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-11-18 11:33:28 +0200
commit03d1a9d91c49fb393c7de55845ec85f8aeeb015b (patch)
tree1e676368aeb7c135e02b12509bb75b21bd0b702d /schema
parent848688add19bb982b07d10773f7c6ed6c99782ce (diff)
Use default client character sets for Oracle examples
Diffstat (limited to 'schema')
-rw-r--r--schema/custom/database.hxx2
-rw-r--r--schema/embedded/database.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/schema/custom/database.hxx b/schema/custom/database.hxx
index 5bca839..6f56224 100644
--- a/schema/custom/database.hxx
+++ b/schema/custom/database.hxx
@@ -60,7 +60,7 @@ create_database (int& argc, char* argv[])
auto_ptr<database> db (new odb::pgsql::database (argc, argv));
#elif defined(DATABASE_ORACLE)
auto_ptr<database> db (
- new odb::oracle::database (argc, argv, false, 873, 873));
+ new odb::oracle::database (argc, argv));
#endif
return db;
diff --git a/schema/embedded/database.hxx b/schema/embedded/database.hxx
index f1cf1e5..4291521 100644
--- a/schema/embedded/database.hxx
+++ b/schema/embedded/database.hxx
@@ -60,7 +60,7 @@ create_database (int& argc, char* argv[])
auto_ptr<database> db (new odb::pgsql::database (argc, argv));
#elif defined(DATABASE_ORACLE)
auto_ptr<database> db (
- new odb::oracle::database (argc, argv, false, 873, 873));
+ new odb::oracle::database (argc, argv));
#endif
return db;