STDSET.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // stdset.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "stdreg.h"
  14. #include "stdset.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CStudentSet
  21. IMPLEMENT_DYNAMIC(CStudentSet, CRecordset)
  22. CStudentSet::CStudentSet(CDatabase* pdb)
  23. : CRecordset(pdb)
  24. {
  25. //{{AFX_FIELD_INIT(CStudentSet)
  26. m_StudentID = 0;
  27. m_Name = "";
  28. m_GradYear = 0;
  29. m_nFields = 3;
  30. //}}AFX_FIELD_INIT
  31. }
  32. CString CStudentSet::GetDefaultConnect()
  33. {
  34. return "ODBC;DSN=Student Registration;";
  35. }
  36. CString CStudentSet::GetDefaultSQL()
  37. {
  38. return "STUDENT";
  39. }
  40. void CStudentSet::DoFieldExchange(CFieldExchange* pFX)
  41. {
  42. //{{AFX_FIELD_MAP(CStudentSet)
  43. pFX->SetFieldType(CFieldExchange::outputColumn);
  44. RFX_Long(pFX, "StudentID", m_StudentID);
  45. RFX_Text(pFX, "Name", m_Name);
  46. RFX_Int(pFX, "GradYear", m_GradYear);
  47. //}}AFX_FIELD_MAP
  48. }
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CStudentSet diagnostics
  51. #ifdef _DEBUG
  52. void CStudentSet::AssertValid() const
  53. {
  54. CRecordset::AssertValid();
  55. }
  56. void CStudentSet::Dump(CDumpContext& dc) const
  57. {
  58. CRecordset::Dump(dc);
  59. }
  60. #endif //_DEBUG