diff options
Diffstat (limited to 'libmysqlpp/command.h')
-rw-r--r-- | libmysqlpp/command.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libmysqlpp/command.h b/libmysqlpp/command.h index 21a2e09..72828e0 100644 --- a/libmysqlpp/command.h +++ b/libmysqlpp/command.h @@ -19,14 +19,16 @@ namespace MySQL { void bindParamI(unsigned int, long unsigned int); void bindParamI(unsigned int, long long unsigned int); + void bindParamB(unsigned int, bool); + void bindParamF(unsigned int, double); void bindParamF(unsigned int, float); - + void bindParamS(unsigned int, const Glib::ustring&); - + void bindParamT(unsigned int, const boost::posix_time::time_duration &); void bindParamT(unsigned int, const boost::posix_time::ptime &); - + void bindNull(unsigned int); protected: void bindParams(); |