diff options
author | randomdan <randomdan@localhost> | 2011-01-30 20:20:18 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-01-30 20:20:18 +0000 |
commit | f725edb356800402b8f9ee48c3ac9691dbbebbb6 (patch) | |
tree | d6d43e64529b37057cd134d1f1944900e1124958 /libodbcpp/bind.h | |
parent | Centralise the ICE splicer (diff) | |
download | libdbpp-odbc-f725edb356800402b8f9ee48c3ac9691dbbebbb6.tar.bz2 libdbpp-odbc-f725edb356800402b8f9ee48c3ac9691dbbebbb6.tar.xz libdbpp-odbc-f725edb356800402b8f9ee48c3ac9691dbbebbb6.zip |
Address type inconsistency issue with size functions
Diffstat (limited to 'libodbcpp/bind.h')
-rw-r--r-- | libodbcpp/bind.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libodbcpp/bind.h b/libodbcpp/bind.h index cd45cf6..c256b2b 100644 --- a/libodbcpp/bind.h +++ b/libodbcpp/bind.h @@ -11,7 +11,7 @@ namespace ODBC { virtual ~Bind() = 0; virtual SQLSMALLINT ctype() const = 0; // The C type ID - virtual SQLINTEGER size() const = 0; // The size of the data + virtual SQLULEN size() const = 0; // The size of the data protected: mutable SQLLEN bindLen; // How much data the driver wants to store }; |