summaryrefslogtreecommitdiff
path: root/libodbcpp/bind.h
diff options
context:
space:
mode:
Diffstat (limited to 'libodbcpp/bind.h')
-rw-r--r--libodbcpp/bind.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/libodbcpp/bind.h b/libodbcpp/bind.h
deleted file mode 100644
index 356723b..0000000
--- a/libodbcpp/bind.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#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
-