tch.cpp
上传用户:yhxbjx
上传日期:2018-11-07
资源大小:7142k
文件大小:2k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // tch.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "课程设计.h"
  5. #include "tch.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // tch
  13. IMPLEMENT_DYNAMIC(tch, CRecordset)
  14. tch::tch(CDatabase* pdb)
  15. : CRecordset(pdb)
  16. {
  17. //{{AFX_FIELD_INIT(tch)
  18. m_ID = _T("");
  19. m_student = _T("");
  20. m_sex = _T("");
  21. m_xueke1 = _T("");
  22. m_xueke2 = _T("");
  23. m_xueke3 = _T("");
  24. m_xueke4 = _T("");
  25. m_xueke5 = _T("");
  26. m_xueke6 = _T("");
  27. m_xueke7 = _T("");
  28. m_class = _T("");
  29. m_nFields = 11;
  30. //}}AFX_FIELD_INIT
  31. m_nDefaultType = snapshot;
  32. }
  33. CString tch::GetDefaultConnect()
  34. {
  35. return _T("ODBC;DSN=resource");
  36. }
  37. CString tch::GetDefaultSQL()
  38. {
  39. return _T("[学生信息表]");
  40. }
  41. void tch::DoFieldExchange(CFieldExchange* pFX)
  42. {
  43. //{{AFX_FIELD_MAP(tch)
  44. pFX->SetFieldType(CFieldExchange::outputColumn);
  45. RFX_Text(pFX, _T("[ID]"), m_ID);
  46. RFX_Text(pFX, _T("[student]"), m_student);
  47. RFX_Text(pFX, _T("[sex]"), m_sex);
  48. RFX_Text(pFX, _T("[xueke1]"), m_xueke1);
  49. RFX_Text(pFX, _T("[xueke2]"), m_xueke2);
  50. RFX_Text(pFX, _T("[xueke3]"), m_xueke3);
  51. RFX_Text(pFX, _T("[xueke4]"), m_xueke4);
  52. RFX_Text(pFX, _T("[xueke5]"), m_xueke5);
  53. RFX_Text(pFX, _T("[xueke6]"), m_xueke6);
  54. RFX_Text(pFX, _T("[xueke7]"), m_xueke7);
  55. RFX_Text(pFX, _T("[class]"), m_class);
  56. //}}AFX_FIELD_MAP
  57. }
  58. /////////////////////////////////////////////////////////////////////////////
  59. // tch diagnostics
  60. #ifdef _DEBUG
  61. void tch::AssertValid() const
  62. {
  63. CRecordset::AssertValid();
  64. }
  65. void tch::Dump(CDumpContext& dc) const
  66. {
  67. CRecordset::Dump(dc);
  68. }
  69. #endif //_DEBUG