aboutsummaryrefslogtreecommitdiff
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
parent848688add19bb982b07d10773f7c6ed6c99782ce (diff)
Use default client character sets for Oracle examples
-rw-r--r--boost/database.hxx2
-rw-r--r--composite/database.hxx2
-rw-r--r--container/database.hxx2
-rw-r--r--hello/database.hxx2
-rw-r--r--inheritance/database.hxx2
-rw-r--r--inverse/database.hxx2
-rw-r--r--mapping/database.hxx2
-rw-r--r--optimistic/database.hxx2
-rw-r--r--qt/database.hxx2
-rw-r--r--query/database.hxx2
-rw-r--r--relationship/database.hxx2
-rw-r--r--schema/custom/database.hxx2
-rw-r--r--schema/embedded/database.hxx2
-rw-r--r--template/database.hxx2
-rw-r--r--view/database.hxx2
15 files changed, 15 insertions, 15 deletions
diff --git a/boost/database.hxx b/boost/database.hxx
index 46610ec..0831364 100644
--- a/boost/database.hxx
+++ b/boost/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;
diff --git a/composite/database.hxx b/composite/database.hxx
index dafdd56..58e1e46 100644
--- a/composite/database.hxx
+++ b/composite/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;
diff --git a/container/database.hxx b/container/database.hxx
index ae0ed92..9bfe1e5 100644
--- a/container/database.hxx
+++ b/container/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;
diff --git a/hello/database.hxx b/hello/database.hxx
index 6466e6b..532d602 100644
--- a/hello/database.hxx
+++ b/hello/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;
diff --git a/inheritance/database.hxx b/inheritance/database.hxx
index 85605b8..f1753c4 100644
--- a/inheritance/database.hxx
+++ b/inheritance/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;
diff --git a/inverse/database.hxx b/inverse/database.hxx
index 12cccc4..3a20d4b 100644
--- a/inverse/database.hxx
+++ b/inverse/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;
diff --git a/mapping/database.hxx b/mapping/database.hxx
index 4badc4e..36a9cb7 100644
--- a/mapping/database.hxx
+++ b/mapping/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;
diff --git a/optimistic/database.hxx b/optimistic/database.hxx
index 4441188..52bac6e 100644
--- a/optimistic/database.hxx
+++ b/optimistic/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;
diff --git a/qt/database.hxx b/qt/database.hxx
index 55ee4f5..e610b3e 100644
--- a/qt/database.hxx
+++ b/qt/database.hxx
@@ -79,7 +79,7 @@ createDatabase (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/query/database.hxx b/query/database.hxx
index 68ed36b..685a77c 100644
--- a/query/database.hxx
+++ b/query/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;
diff --git a/relationship/database.hxx b/relationship/database.hxx
index dd4a62f..1617709 100644
--- a/relationship/database.hxx
+++ b/relationship/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;
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;
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;
diff --git a/view/database.hxx b/view/database.hxx
index dbf573d..ee97a20 100644
--- a/view/database.hxx
+++ b/view/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;