#ifndef ODBC_BIND_H #define ODBC_BIND_H #include #include namespace ODBC { class Command; class BindBase { public: BindBase(); virtual ~BindBase() {} protected: SQLLEN bindLen; // Used memory friend class Param; friend class Column; friend class Command; }; template class Bind { public: virtual ~Bind() {} mutable t value; }; typedef std::vector SQLCHARVEC; } #endif