From 38b3452daeae0085506f5b4661203fb74a9b7840 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 2 May 2015 18:41:53 +0100 Subject: Add support for RDBMS boolean/bit types --- libodbcpp/command.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libodbcpp/command.h') 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); -- cgit v1.2.3