summaryrefslogtreecommitdiff
path: root/odb/relational/common.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-01-12 09:28:06 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-01-20 15:43:46 +0200
commit06b889850144910f1f908fc87f78114bde920596 (patch)
tree451bb55a04a83cbacecf21f67e671dc8124f7cf9 /odb/relational/common.cxx
parent0ed8f3b5e49c5b9f9247cfc28aadb37d892ed39b (diff)
Query support for SQL Server
Diffstat (limited to 'odb/relational/common.cxx')
-rw-r--r--odb/relational/common.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/odb/relational/common.cxx b/odb/relational/common.cxx
index 92e2c8f..2d8f8d6 100644
--- a/odb/relational/common.cxx
+++ b/odb/relational/common.cxx
@@ -291,8 +291,11 @@ namespace relational
{
os << "template <const char* table>" << endl
<< "const typename " << scope_ << "::" << name << "_type_" << endl
- << scope_ << "::" << name << " (" <<
- "table, " << strlit (column) << ");"
+ << scope_ << "::" << name << " (" << "table, " << strlit (column);
+
+ column_ctor_extra (m);
+
+ os << ");"
<< endl;
}