diff options
Diffstat (limited to 'libodbcpp/command.h')
-rw-r--r-- | libodbcpp/command.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libodbcpp/command.h b/libodbcpp/command.h index 8e59c76..55e6703 100644 --- a/libodbcpp/command.h +++ b/libodbcpp/command.h @@ -15,6 +15,8 @@ namespace ODBC { void bindParamI(unsigned int i, int val); 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 *); @@ -28,6 +30,7 @@ namespace ODBC { const String sql; protected: SQLHSTMT hStmt; + const Connection& connection; private: Params params; }; |