diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-04-29 11:47:09 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-04-29 11:47:09 +0200 |
commit | 01a78620adb935f421eb9bd3f36e2c07ebe61e22 (patch) | |
tree | 5a530ff933cb89c9b837b892edc7226511feac2a | |
parent | ae0dab024182275dfb6f66b4060cad92c8f8a934 (diff) |
Fix a few bugs
-rw-r--r-- | odb/oracle/database.cxx | 2 | ||||
-rw-r--r-- | odb/oracle/query.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/odb/oracle/database.cxx b/odb/oracle/database.cxx index dd35305..bb086f6 100644 --- a/odb/oracle/database.cxx +++ b/odb/oracle/database.cxx @@ -33,7 +33,7 @@ namespace odb db_ (db), port_ (0), charset_ (charset), - ncharset_ (ncharset_), + ncharset_ (ncharset), environment_ (environment), factory_ (factory.transfer ()) { diff --git a/odb/oracle/query.hxx b/odb/oracle/query.hxx index 80c3b18..5d3d7ac 100644 --- a/odb/oracle/query.hxx +++ b/odb/oracle/query.hxx @@ -1186,7 +1186,7 @@ namespace odb }; template <typename T> - struct query_column<T, id_clob> + struct query_column<T, id_clob>: lob_query_column { query_column (const char* table, const char* column) : lob_query_column (table, column) @@ -1195,7 +1195,7 @@ namespace odb }; template <typename T> - struct query_column<T, id_nclob> + struct query_column<T, id_nclob>: lob_query_column { query_column (const char* table, const char* column) : lob_query_column (table, column) |