ODBCReportSet.cpp
上传用户:benben_wyd
上传日期:2010-02-26
资源大小:1229k
文件大小:4k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // CODBCReportSet.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ODBCReport.h"
  5. #include "ODBCReportSet.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CCODBCReportSet
  13. IMPLEMENT_DYNAMIC(CODBCReportSet, CRecordset)
  14. CODBCReportSet::CODBCReportSet(CDatabase* pdb)
  15. : CRecordset(pdb)
  16. {
  17. //{{AFX_FIELD_INIT(CODBCReportSet)
  18. m_ClassID = _T("");
  19. m_Description = _T("");
  20. m_Credits = 0;
  21. m_DepartmentCode = _T("");
  22. m_DepartmentName = _T("");
  23. m_InstructorID = 0;
  24. m_Name = _T("");
  25. m_DepartmentCode2 = _T("");
  26. m_EMAIL = _T("");
  27. m_Notes = _T("");
  28. m_SectionID = 0;
  29. m_ClassID2 = _T("");
  30. m_SectionNumber = 0;
  31. m_IsLab = FALSE;
  32. m_Term = _T("");
  33. m_Year = 0;
  34. m_Room = _T("");
  35. m_InstructorID2 = 0;
  36. m_LabsParentSectionID = 0;
  37. m_Notes2 = _T("");
  38. m_StudentID = 0;
  39. m_FirstName = _T("");
  40. m_MidName = _T("");
  41. m_LastName = _T("");
  42. m_Address = _T("");
  43. m_City = _T("");
  44. m_StateOrProvince = _T("");
  45. m_PostalCode = _T("");
  46. m_PhoneNumber = _T("");
  47. m_EMAIL2 = _T("");
  48. m_Major = _T("");
  49. m_StudentSSN = _T("");
  50. m_StudentID2 = 0;
  51. m_SectionID2 = 0;
  52. m_nFields = 34;
  53. //}}AFX_FIELD_INIT
  54. m_nDefaultType = snapshot;
  55. m_strSort = "Department.DepartmentCode, 
  56. Instructor.Name, 
  57. Student.LastName";
  58. m_strFilter = "Instructor.DepartmentCode 
  59. = Department.DepartmentCode 
  60. AND Section.InstructorID 
  61. = Instructor.InstructorID 
  62. AND Section.ClassID 
  63. = Class.ClassID 
  64. AND StudentClass.StudentID 
  65. = Student.StudentID 
  66. AND StudentClass.SectionID 
  67. = Section.SectionID";
  68. }
  69. CString CODBCReportSet::GetDefaultConnect()
  70. {
  71. return _T("ODBC;DSN=Classes");
  72. }
  73. CString CODBCReportSet::GetDefaultSQL()
  74. {
  75. return _T("[Class],[Department],[Instructor],[Section],[Student],[StudentClass]");
  76. }
  77. void CODBCReportSet::DoFieldExchange(CFieldExchange* pFX)
  78. {
  79. //{{AFX_FIELD_MAP(CODBCReportSet)
  80. pFX->SetFieldType(CFieldExchange::outputColumn);
  81. RFX_Text(pFX, _T("[Class].[ClassID]"), m_ClassID);
  82. RFX_Text(pFX, _T("[Description]"), m_Description);
  83. RFX_Int(pFX, _T("[Credits]"), m_Credits);
  84. RFX_Text(pFX, _T("[Department].[DepartmentCode]"), m_DepartmentCode);
  85. RFX_Text(pFX, _T("[DepartmentName]"), m_DepartmentName);
  86. RFX_Long(pFX, _T("[Instructor].[InstructorID]"), m_InstructorID);
  87. RFX_Text(pFX, _T("[Name]"), m_Name);
  88. RFX_Text(pFX, _T("[Instructor].[DepartmentCode]"), m_DepartmentCode2);
  89. RFX_Text(pFX, _T("[Instructor].[EMAIL]"), m_EMAIL);
  90. RFX_Text(pFX, _T("[Instructor].[Notes]"), m_Notes);
  91. RFX_Long(pFX, _T("[Section].[SectionID]"), m_SectionID);
  92. RFX_Text(pFX, _T("[Section].[ClassID]"), m_ClassID2);
  93. RFX_Int(pFX, _T("[SectionNumber]"), m_SectionNumber);
  94. RFX_Bool(pFX, _T("[IsLab]"), m_IsLab);
  95. RFX_Text(pFX, _T("[Term]"), m_Term);
  96. RFX_Int(pFX, _T("[Year]"), m_Year);
  97. RFX_Text(pFX, _T("[Room]"), m_Room);
  98. RFX_Long(pFX, _T("[Section].[InstructorID]"), m_InstructorID2);
  99. RFX_Long(pFX, _T("[LabsParentSectionID]"), m_LabsParentSectionID);
  100. RFX_Text(pFX, _T("[Section].[Notes]"), m_Notes2);
  101. RFX_Long(pFX, _T("[Student].[StudentID]"), m_StudentID);
  102. RFX_Text(pFX, _T("[FirstName]"), m_FirstName);
  103. RFX_Text(pFX, _T("[MidName]"), m_MidName);
  104. RFX_Text(pFX, _T("[LastName]"), m_LastName);
  105. RFX_Text(pFX, _T("[Address]"), m_Address);
  106. RFX_Text(pFX, _T("[City]"), m_City);
  107. RFX_Text(pFX, _T("[StateOrProvince]"), m_StateOrProvince);
  108. RFX_Text(pFX, _T("[PostalCode]"), m_PostalCode);
  109. RFX_Text(pFX, _T("[PhoneNumber]"), m_PhoneNumber);
  110. RFX_Text(pFX, _T("[Student].[EMAIL]"), m_EMAIL2);
  111. RFX_Text(pFX, _T("[Major]"), m_Major);
  112. RFX_Text(pFX, _T("[StudentSSN]"), m_StudentSSN);
  113. RFX_Long(pFX, _T("[StudentClass].[StudentID]"), m_StudentID2);
  114. RFX_Long(pFX, _T("[StudentClass].[SectionID]"), m_SectionID2);
  115. //}}AFX_FIELD_MAP
  116. }
  117. /////////////////////////////////////////////////////////////////////////////
  118. // CODBCReportSet diagnostics
  119. #ifdef _DEBUG
  120. void CODBCReportSet::AssertValid() const
  121. {
  122. CRecordset::AssertValid();
  123. }
  124. void CODBCReportSet::Dump(CDumpContext& dc) const
  125. {
  126. CRecordset::Dump(dc);
  127. }
  128. #endif //_DEBUG