diff options
Diffstat (limited to 'libodbcpp/command.h')
-rw-r--r-- | libodbcpp/command.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libodbcpp/command.h b/libodbcpp/command.h index fdabe4a..02347cf 100644 --- a/libodbcpp/command.h +++ b/libodbcpp/command.h @@ -26,9 +26,8 @@ namespace ODBC { 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); + void bindParamT(unsigned int i, const boost::posix_time::time_duration &); + void bindParamT(unsigned int i, const boost::posix_time::ptime &); void bindNull(unsigned int i); |