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

SQL Server

开发平台:

Visual C++

  1. // studentSet.cpp : implementation of the CStudentSet class
  2. //
  3. #include "stdafx.h"
  4. #include "student.h"
  5. #include "studentSet.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CStudentSet implementation
  13. IMPLEMENT_DYNAMIC(CStudentSet, CRecordset)
  14. CStudentSet::CStudentSet(CDatabase* pdb)
  15. : CRecordset(pdb)
  16. {
  17. //{{AFX_FIELD_INIT(CStudentSet)
  18. m_column1 = 0;
  19. m_column2 = _T("");
  20. m_column3 = 0;
  21. m_column4 = 0;
  22. m_column5 = 0;
  23. m_nFields = 5;
  24. //}}AFX_FIELD_INIT
  25. m_nDefaultType = dynaset;
  26. }
  27. CString CStudentSet::GetDefaultConnect()
  28. {
  29. return _T("ODBC;DSN=score");
  30. }
  31. CString CStudentSet::GetDefaultSQL()
  32. {
  33. return _T("[二班]");
  34. }
  35. void CStudentSet::DoFieldExchange(CFieldExchange* pFX)
  36. {
  37. //{{AFX_FIELD_MAP(CStudentSet)
  38. pFX->SetFieldType(CFieldExchange::outputColumn);
  39. RFX_Long(pFX, _T("[学号]"), m_column1);
  40. RFX_Text(pFX, _T("[姓名]"), m_column2);
  41. RFX_Long(pFX, _T("[数学]"), m_column3);
  42. RFX_Long(pFX, _T("[语文]"), m_column4);
  43. RFX_Long(pFX, _T("[英语]"), m_column5);
  44. //}}AFX_FIELD_MAP
  45. }
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CStudentSet diagnostics
  48. #ifdef _DEBUG
  49. void CStudentSet::AssertValid() const
  50. {
  51. CRecordset::AssertValid();
  52. }
  53. void CStudentSet::Dump(CDumpContext& dc) const
  54. {
  55. CRecordset::Dump(dc);
  56. }
  57. #endif //_DEBUG