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

Windows编程

开发平台:

Visual C++

  1. // enrollset.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. // CEnrollmentSet recordset
  14. class CEnrollmentSet : public CRecordset
  15. {
  16. public:
  17. CEnrollmentSet(CDatabase* pDatabase);
  18. DECLARE_DYNAMIC(CEnrollmentSet)
  19. // Field/Param Data
  20. //{{AFX_FIELD(CEnrollmentSet, CRecordset)
  21. long    m_StudentID;
  22. CString m_CourseID;
  23. CString m_SectionNo;
  24. CString m_Grade;
  25. //}}AFX_FIELD
  26. // Overrides
  27. // ClassWizard generate virtual function overrides
  28. //{{AFX_VIRTUAL(CEnrollmentSet)
  29. public:
  30. virtual CString GetDefaultConnect();    // Default connection string
  31. virtual CString GetDefaultSQL();    // Default SQL for Recordset
  32. virtual void DoFieldExchange(CFieldExchange* pFX);  // RFX support
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. };