ExamSubjectSet.cpp
资源名称:school.rar [点击查看]
上传用户:rs600066
上传日期:2017-10-16
资源大小:4788k
文件大小:1k
源码类别:
数据库系统
开发平台:
Visual C++
- // ExamSubjectSet.cpp : implementation file
- //
- #include "stdafx.h"
- #include "school.h"
- #include "ExamSubjectSet.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CExamSubjectSet
- IMPLEMENT_DYNAMIC(CExamSubjectSet, CRecordset)
- CExamSubjectSet::CExamSubjectSet(CDatabase* pdb)
- : CRecordset(pdb)
- {
- //{{AFX_FIELD_INIT(CExamSubjectSet)
- m_code = _T("");
- m_name = _T("");
- m_nFields = 2;
- //}}AFX_FIELD_INIT
- m_nDefaultType = snapshot;
- }
- CString CExamSubjectSet::GetDefaultConnect()
- {
- return _T("ODBC;DSN=school");
- }
- CString CExamSubjectSet::GetDefaultSQL()
- {
- return _T("[examsubject]");
- }
- void CExamSubjectSet::DoFieldExchange(CFieldExchange* pFX)
- {
- //{{AFX_FIELD_MAP(CExamSubjectSet)
- pFX->SetFieldType(CFieldExchange::outputColumn);
- RFX_Text(pFX, _T("[code]"), m_code);
- RFX_Text(pFX, _T("[name]"), m_name);
- //}}AFX_FIELD_MAP
- }
- /////////////////////////////////////////////////////////////////////////////
- // CExamSubjectSet diagnostics
- #ifdef _DEBUG
- void CExamSubjectSet::AssertValid() const
- {
- CRecordset::AssertValid();
- }
- void CExamSubjectSet::Dump(CDumpContext& dc) const
- {
- CRecordset::Dump(dc);
- }
- #endif //_DEBUG