#ifndef ODBC_BIND_H #define ODBC_BIND_H #include #include namespace ODBC { class Command; class BindBase { public: BindBase(); virtual ~BindBase() {} protected: SQLINTEGER 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; template <> class Bind { public: virtual ~Bind() {} mutable SQLCHARVEC value; }; } #endif