diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-24 04:08:56 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-24 04:08:56 +0000 |
commit | 63d9cbb434ec4f6e828083b99d638127cfce7a95 (patch) | |
tree | 2dfcf95372467a9119147265fccfba058c617b8a /libodbcpp/odbc-bind.h | |
parent | Use parent glibmm (diff) | |
download | libdbpp-odbc-63d9cbb434ec4f6e828083b99d638127cfce7a95.tar.bz2 libdbpp-odbc-63d9cbb434ec4f6e828083b99d638127cfce7a95.tar.xz libdbpp-odbc-63d9cbb434ec4f6e828083b99d638127cfce7a95.zip |
ODBC files prefixed with odbc-
Diffstat (limited to 'libodbcpp/odbc-bind.h')
-rw-r--r-- | libodbcpp/odbc-bind.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libodbcpp/odbc-bind.h b/libodbcpp/odbc-bind.h new file mode 100644 index 0000000..356723b --- /dev/null +++ b/libodbcpp/odbc-bind.h @@ -0,0 +1,21 @@ +#ifndef ODBC_BIND_H +#define ODBC_BIND_H + +#include <sql.h> +#include <vector> + +namespace ODBC { + class Bind { + public: + Bind(); + virtual ~Bind() = 0; + + virtual SQLSMALLINT ctype() const = 0; // The C type ID + virtual SQLULEN size() const = 0; // The size of the data + protected: + mutable SQLLEN bindLen; // How much data the driver wants to store + }; +} + +#endif + |