SECTSET.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // sectset.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CSectionSet recordset
  14. class CSectionSet : public CRecordset
  15. {
  16. public:
  17. CSectionSet(CDatabase* pDatabase);
  18. DECLARE_DYNAMIC(CSectionSet)
  19. // Field/Param Data
  20. //{{AFX_FIELD(CSectionSet, CRecordset)
  21. CString m_CourseID;
  22. CString m_SectionNo;
  23. CString m_InstructorID;
  24. CString m_RoomNo;
  25. CString m_Schedule;
  26. int     m_Capacity;
  27. //}}AFX_FIELD
  28. // Overrides
  29. // ClassWizard generate virtual function overrides
  30. //{{AFX_VIRTUAL(CSectionSet)
  31. public:
  32. virtual CString GetDefaultConnect();    // Default connection string
  33. virtual CString GetDefaultSQL();    // Default SQL for Recordset
  34. virtual void DoFieldExchange(CFieldExchange* pFX);  // RFX support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. #ifdef _DEBUG
  38. virtual void AssertValid() const;
  39. virtual void Dump(CDumpContext& dc) const;
  40. #endif
  41. };