ScoreSet.cpp
上传用户:rs600066
上传日期:2017-10-16
资源大小:4788k
文件大小:2k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // ScoreSet.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "school.h"
  5. #include "ScoreSet.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CScoreSet
  13. IMPLEMENT_DYNAMIC(CScoreSet, CRecordset)
  14. CScoreSet::CScoreSet(CDatabase* pdb)
  15. : CRecordset(pdb)
  16. {
  17. //{{AFX_FIELD_INIT(CScoreSet)
  18. m_ID = 0;
  19. m_class = _T("");
  20. m_time = _T("");
  21. m_code = _T("");
  22. m_name = _T("");
  23. m_subject = _T("");
  24. m_type = _T("");
  25. m_score = 0;
  26. m_makeup_score = 0;
  27. m_absent = _T("");
  28. m_nFields = 10;
  29. //}}AFX_FIELD_INIT
  30. m_nDefaultType = snapshot;
  31. }
  32. CString CScoreSet::GetDefaultConnect()
  33. {
  34. return _T("ODBC;DSN=school");
  35. }
  36. CString CScoreSet::GetDefaultSQL()
  37. {
  38. return _T("[score]");
  39. }
  40. void CScoreSet::DoFieldExchange(CFieldExchange* pFX)
  41. {
  42. //{{AFX_FIELD_MAP(CScoreSet)
  43. pFX->SetFieldType(CFieldExchange::outputColumn);
  44. RFX_Long(pFX, _T("[ID]"), m_ID);
  45. RFX_Text(pFX, _T("[class]"), m_class);
  46. RFX_Text(pFX, _T("[time]"), m_time);
  47. RFX_Text(pFX, _T("[code]"), m_code);
  48. RFX_Text(pFX, _T("[name]"), m_name);
  49. RFX_Text(pFX, _T("[subject]"), m_subject);
  50. RFX_Text(pFX, _T("[type]"), m_type);
  51. RFX_Long(pFX, _T("[score]"), m_score);
  52. RFX_Long(pFX, _T("[makeup_score]"), m_makeup_score);
  53. RFX_Text(pFX, _T("[absent]"), m_absent);
  54. //}}AFX_FIELD_MAP
  55. }
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CScoreSet diagnostics
  58. #ifdef _DEBUG
  59. void CScoreSet::AssertValid() const
  60. {
  61. CRecordset::AssertValid();
  62. }
  63. void CScoreSet::Dump(CDumpContext& dc) const
  64. {
  65. CRecordset::Dump(dc);
  66. }
  67. #endif //_DEBUG