diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-11-18 11:33:28 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-11-18 11:33:28 +0200 |
commit | 03d1a9d91c49fb393c7de55845ec85f8aeeb015b (patch) | |
tree | 1e676368aeb7c135e02b12509bb75b21bd0b702d /template/database.hxx | |
parent | 848688add19bb982b07d10773f7c6ed6c99782ce (diff) |
Use default client character sets for Oracle examples
Diffstat (limited to 'template/database.hxx')
-rw-r--r-- | template/database.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/database.hxx b/template/database.hxx index 9ddc0f8..4d40696 100644 --- a/template/database.hxx +++ b/template/database.hxx @@ -79,7 +79,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; |