studentSet.h
上传用户:hzzhuce
上传日期:2013-04-01
资源大小:1289k
文件大小:1k
源码类别:

SQL Server

开发平台:

Visual C++

  1. // studentSet.h : interface of the CStudentSet class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_STUDENTSET_H__2F22E629_EA5F_4D61_A740_D06D6441F0CA__INCLUDED_)
  5. #define AFX_STUDENTSET_H__2F22E629_EA5F_4D61_A740_D06D6441F0CA__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CStudentSet : public CRecordset
  10. {
  11. public:
  12. CStudentSet(CDatabase* pDatabase = NULL);
  13. DECLARE_DYNAMIC(CStudentSet)
  14. // Field/Param Data
  15. //{{AFX_FIELD(CStudentSet, CRecordset)
  16. long m_column1;
  17. CString m_column2;
  18. long m_column3;
  19. long m_column4;
  20. long m_column5;
  21. //}}AFX_FIELD
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CStudentSet)
  25. public:
  26. virtual CString GetDefaultConnect(); // Default connection string
  27. virtual CString GetDefaultSQL();  // default SQL for Recordset
  28. virtual void DoFieldExchange(CFieldExchange* pFX); // RFX support
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. #ifdef _DEBUG
  32. virtual void AssertValid() const;
  33. virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35. };
  36. //{{AFX_INSERT_LOCATION}}
  37. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  38. #endif // !defined(AFX_STUDENTSET_H__2F22E629_EA5F_4D61_A740_D06D6441F0CA__INCLUDED_)