RecordsetEx.h
上传用户:jsxglz
上传日期:2007-01-03
资源大小:117k
文件大小:1k
源码类别:

SQL Server

开发平台:

Visual C++

  1. #if !defined(AFX_RECORDSETEX_H__43D82455_75A6_11D2_BD7C_204C4F4F5020__INCLUDED_)
  2. #define AFX_RECORDSETEX_H__43D82455_75A6_11D2_BD7C_204C4F4F5020__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // RecordsetEx.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CRecordsetEx recordset
  10. class CRecordsetEx : public CRecordset
  11. {
  12. public:
  13. CRecordsetEx(CDatabase* pDatabase = NULL);
  14. DECLARE_DYNAMIC(CRecordsetEx)
  15. // Overrides
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CRecordsetEx)
  18. public:
  19. virtual BOOL Open(UINT nOpenType = snapshot, LPCTSTR lpszSql = NULL, DWORD dwOptions = none);
  20. //}}AFX_VIRTUAL
  21. void AllocAndCacheFieldInfo();
  22. BOOL ExecDirect(const CString& sSQL);
  23. void GetFieldValue(short nIndex, CString& strValue);
  24. // Implementation
  25. #ifdef _DEBUG
  26. virtual void AssertValid() const;
  27. virtual void Dump(CDumpContext& dc) const;
  28. #endif
  29. private:
  30. long GetData(CDatabase* pdb, HSTMT hstmt,
  31. short nFieldIndex, short nFieldType, LPVOID pvData, int nLen,
  32. short nSQLType);
  33. };
  34. //{{AFX_INSERT_LOCATION}}
  35. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  36. #endif // !defined(AFX_RECORDSETEX_H__43D82455_75A6_11D2_BD7C_204C4F4F5020__INCLUDED_)