diff options
-rw-r--r-- | libdbpp/command.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libdbpp/command.h b/libdbpp/command.h index d9bc853..f8ca7f8 100644 --- a/libdbpp/command.h +++ b/libdbpp/command.h @@ -77,12 +77,17 @@ namespace DB { else \ bindNull(i); \ } + /// @cond OPTWRAPPER(bindParamI); OPTWRAPPER(bindParamF); OPTWRAPPER(bindParamS); OPTWRAPPER(bindParamB); OPTWRAPPER(bindParamT); + /// @endcond +#undef OPTWRAPPER + /// Bind a (possibly null) c-string to parameter i. void bindParamS(unsigned int, const char * const); + /// Bind a (possibly null) c-string to parameter i. void bindParamS(unsigned int, char * const); }; typedef boost::shared_ptr<Command> CommandPtr; |