home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / dynabind / coursset.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  59 lines

  1. // coursset.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.  
  13. #include "stdafx.h"
  14. #include "enroll.h"
  15. #include "coursset.h"
  16.  
  17. #ifdef _DEBUG
  18. #undef THIS_FILE
  19. static char BASED_CODE THIS_FILE[] = __FILE__;
  20. #endif
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CCourseSet
  24.  
  25. IMPLEMENT_DYNAMIC(CCourseSet, CRecordset)
  26.  
  27. CCourseSet::CCourseSet(CDatabase* pdb)
  28.     : CRecordset(pdb)
  29. {
  30.     //{{AFX_FIELD_INIT(CCourseSet)
  31.     m_CourseID = "";
  32.     m_CourseTitle = "";
  33.     m_Hours = 0;
  34.     m_nFields = 3;
  35.     //}}AFX_FIELD_INIT
  36.  
  37.     m_nDefaultType = dynaset;
  38. }
  39.  
  40. CString CCourseSet::GetDefaultConnect()
  41. {
  42.     return "ODBC;DSN=Student Registration;";
  43. }
  44.  
  45. CString CCourseSet::GetDefaultSQL()
  46. {
  47.     return "COURSE";
  48. }
  49.  
  50. void CCourseSet::DoFieldExchange(CFieldExchange* pFX)
  51. {
  52.     //{{AFX_FIELD_MAP(CCourseSet)
  53.     pFX->SetFieldType(CFieldExchange::outputColumn);
  54.     RFX_Text(pFX, "CourseID", m_CourseID);
  55.     RFX_Text(pFX, "CourseTitle", m_CourseTitle);
  56.     RFX_Int(pFX, "Hours", m_Hours);
  57.     //}}AFX_FIELD_MAP
  58. }
  59.