COURSSET.CPP
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- // coursset.cpp : implementation file
- //
- #include "stdafx.h"
- #include "enroll.h"
- #include "coursset.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CCourseSet
- IMPLEMENT_DYNAMIC(CCourseSet, CRecordset)
- CCourseSet::CCourseSet(CDatabase* pdb)
- : CRecordset(pdb)
- {
- //{{AFX_FIELD_INIT(CCourseSet)
- m_CourseID = _T("");
- m_CourseTitle = _T("");
- m_Hours = 0;
- m_nFields = 3;
- //}}AFX_FIELD_INIT
- }
- CString CCourseSet::GetDefaultConnect()
- {
- return _T("ODBC;DSN=Student Registration;");
- }
- CString CCourseSet::GetDefaultSQL()
- {
- return _T("COURSE");
- }
- void CCourseSet::DoFieldExchange(CFieldExchange* pFX)
- {
- //{{AFX_FIELD_MAP(CCourseSet)
- pFX->SetFieldType(CFieldExchange::outputColumn);
- RFX_Text(pFX, "CourseID", m_CourseID);
- RFX_Text(pFX, "CourseTitle", m_CourseTitle);
- RFX_Int(pFX, "Hours", m_Hours);
- //}}AFX_FIELD_MAP
- }
- /////////////////////////////////////////////////////////////////////////////
- // CCourseSet diagnostics
- #ifdef _DEBUG
- void CCourseSet::AssertValid() const
- {
- CRecordset::AssertValid();
- }
- void CCourseSet::Dump(CDumpContext& dc) const
- {
- CRecordset::Dump(dc);
- }
- #endif //_DEBUG