DataBaseSet.h
上传用户:y440e3
上传日期:2010-03-08
资源大小:200k
文件大小:1k
源码类别:

GIS编程

开发平台:

Visual C++

  1. #if !defined(AFX_DATABASESET_H__2E69F1D4_2188_11D3_B434_CAB6E5000000__INCLUDED_)
  2. #define AFX_DATABASESET_H__2E69F1D4_2188_11D3_B434_CAB6E5000000__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DataBaseSet.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDataBaseSet recordset
  10. class CDataBaseSet : public CRecordset
  11. {
  12. public:
  13. CDataBaseSet(CDatabase* pDatabase = NULL);
  14. DECLARE_DYNAMIC(CDataBaseSet)
  15. protected:
  16. CString m_strCondition[30]; //用来存储查询条件,可以最多存储30个查询条件
  17. short m_NumbStr; //存储的查询条件的数目
  18. public:
  19. BOOL AddStr(CString m_str);
  20. BOOL ModifyStr(int Index,CString m_str);
  21. BOOL DeleteStr(int Index);
  22. BOOL GetStr(int Index,CString& m_str);
  23. // Field/Param Data
  24. //{{AFX_FIELD(CDataBaseSet, CRecordset)
  25. //}}AFX_FIELD
  26. virtual int GetID()=0;
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CDataBaseSet)
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. };
  37. //{{AFX_INSERT_LOCATION}}
  38. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  39. #endif // !defined(AFX_DATABASESET_H__2E69F1D4_2188_11D3_B434_CAB6E5000000__INCLUDED_)