SECTSET.H
Upload User: bangxh
Upload Date: 2007-01-31
Package Size: 42235k
Code Size: 1k
Category:

Windows Develop

Development Platform:

Visual C++

  1. // SectSet.h : interface of the CSectionSet class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CSectionSet : public CRecordset
  5. {
  6. public:
  7. CSectionSet(CDatabase* pDatabase = NULL);
  8. DECLARE_DYNAMIC(CSectionSet)
  9. // Field/Param Data
  10. //{{AFX_FIELD(CSectionSet, CRecordset)
  11. CString m_CourseID;
  12. CString m_SectionNo;
  13. CString m_InstructorID;
  14. CString m_RoomNo;
  15. CString m_Schedule;
  16. int m_Capacity;
  17. //}}AFX_FIELD
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CSectionSet)
  21. public:
  22. virtual CString GetDefaultConnect();    // Default connection string
  23. virtual CString GetDefaultSQL();    // default SQL for Recordset
  24. virtual void DoFieldExchange(CFieldExchange* pFX);  // RFX support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. #ifdef _DEBUG
  28. virtual void AssertValid() const;
  29. virtual void Dump(CDumpContext& dc) const;
  30. #endif
  31. };