diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-05-02 18:41:53 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-05-02 18:41:53 +0100 |
commit | 38b3452daeae0085506f5b4661203fb74a9b7840 (patch) | |
tree | d0d8c55a7785582d8a54755d738f78573f288fa2 /libodbcpp/command.h | |
parent | Centralize all the column reference storage logic (diff) | |
download | libdbpp-odbc-38b3452daeae0085506f5b4661203fb74a9b7840.tar.bz2 libdbpp-odbc-38b3452daeae0085506f5b4661203fb74a9b7840.tar.xz libdbpp-odbc-38b3452daeae0085506f5b4661203fb74a9b7840.zip |
Add support for RDBMS boolean/bit types
Diffstat (limited to 'libodbcpp/command.h')
-rw-r--r-- | libodbcpp/command.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libodbcpp/command.h b/libodbcpp/command.h index 02347cf..17926f6 100644 --- a/libodbcpp/command.h +++ b/libodbcpp/command.h @@ -21,6 +21,8 @@ namespace ODBC { void bindParamI(unsigned int i, unsigned long int val); void bindParamI(unsigned int i, unsigned long long int val); + void bindParamB(unsigned int i, bool val); + void bindParamF(unsigned int i, double val); void bindParamF(unsigned int i, float val); |