aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/query.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-07-10 15:17:13 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-07-10 15:17:13 +0200
commitc970a38889d5774f7d0f73215dfd70934524d76a (patch)
tree3421c4c00fed4cea6362b84b8a8acd8b1275e9db /odb/mysql/query.cxx
parentca6e36f6bda1d0a1dc55bc2e89609ae48bf443dd (diff)
Add support for custom database type mapping
New pragma qualifier, map, and specifiers: as, to, from. New tests: <database>/custom.
Diffstat (limited to 'odb/mysql/query.cxx')
-rw-r--r--odb/mysql/query.cxx18
1 files changed, 17 insertions, 1 deletions
diff --git a/odb/mysql/query.cxx b/odb/mysql/query.cxx
index 2573ac1..70d55c2 100644
--- a/odb/mysql/query.cxx
+++ b/odb/mysql/query.cxx
@@ -118,10 +118,13 @@ namespace odb
}
void query::
- add (details::shared_ptr<query_param> p)
+ add (details::shared_ptr<query_param> p, const char* conv)
{
clause_.push_back (clause_part (clause_part::param));
+ if (conv != 0)
+ clause_.back ().part = conv;
+
parameters_.push_back (p);
bind_.push_back (MYSQL_BIND ());
binding_.bind = &bind_[0];
@@ -258,7 +261,20 @@ namespace odb
if (last != ' ' && last != '(')
r += ' ';
+ // Add the conversion expression, if any.
+ //
+ string::size_type p;
+ if (!i->part.empty ())
+ {
+ p = i->part.find ("(?)");
+ r.append (i->part, 0, p);
+ }
+
r += '?';
+
+ if (!i->part.empty ())
+ r.append (i->part, p + 3, string::npos);
+
break;
}
case clause_part::native: