From 685587ddb7af3a943a1dd5837fcfeeb779cf15b1 Mon Sep 17 00:00:00 2001 From: randomdan Date: Mon, 30 Aug 2010 17:34:02 +0000 Subject: Remove lots of overkill variations of string stuff and have a vector deal with the memory --- libodbcpp/command.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libodbcpp/command.h') diff --git a/libodbcpp/command.h b/libodbcpp/command.h index 1348441..830f573 100644 --- a/libodbcpp/command.h +++ b/libodbcpp/command.h @@ -18,12 +18,12 @@ namespace ODBC { void bindParamI(unsigned int i, unsigned int val); void bindParamI(unsigned int i, long unsigned int val); void bindParamI(unsigned int i, long long unsigned int val); + void bindParamF(unsigned int i, double val); void bindParamF(unsigned int i, float val); - void bindParamS(unsigned int i, const char *); - void bindParamS(unsigned int i, const char *, size_t); - void bindParamS(unsigned int i, const std::string &); + void bindParamS(unsigned int i, const Glib::ustring &); + void bindParamT(unsigned int i, const struct tm *); void bindParamT(unsigned int i, const SQL_TIMESTAMP_STRUCT &); void bindParamT(unsigned int i, time_t); -- cgit v1.2.3