求助:error C2501: 'SQLHEHV' : missing storage-class or type specifiers
为了使用ODBC API方式连接数据库,所以自己创建了一个类CMyODBD,但是编译的时候显示错误.
头文件程序如下:
class CMyODBC
{
public:
BOOL ConnectDB(const char *cpServerName, const char *cpUserName, const char *cpPassword);
CMyODBC();
virtual ~CMyODBC();
BOOL ExeSqlDirect(const char *cpSqlStmt);
SQLHEHV m_henv;
SQLHDBC m_hdbc;
SQLHSTMT m_hstmt;
SQLRETURN m_retcode;
};
错误信息如下:
error C2146: syntax error : missing ';' before identifier 'm_henv'
error C2501: 'SQLHEHV' : missing storage-class or type specifiers
error C2501: 'm_henv' : missing storage-class or type specifiers
请各位大虾指点啊~~~~~