diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-26 12:43:14 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-01-26 12:43:14 +0200 |
commit | d0406a26fa4e66c579c9efe89668d56fb4f1618e (patch) | |
tree | 45f704d1b94da5a48644e37f49d11a1912b4e3ea | |
parent | 9c775824ef0b51cbc894b62712bde5f0c12fb144 (diff) |
Implement support for database schema
New pragma qualifier: namespace. New pragma specifier: schema. The table
specifier was extended to accept a schema prefix. New option: --default-
schema. The common/schema test was extended to cover the new functionality.
-rw-r--r-- | odb/mysql/query.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/odb/mysql/query.cxx b/odb/mysql/query.cxx index fec8031..b82b1ac 100644 --- a/odb/mysql/query.cxx +++ b/odb/mysql/query.cxx @@ -111,11 +111,9 @@ namespace odb void query:: append (const char* table, const char* column) { - string s ("`"); - s += table; - s += "`.`"; + string s (table); + s += '.'; s += column; - s += '`'; clause_.push_back (clause_part (clause_part::column, s)); } |