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 >
Wrap
C/C++ Source or Header
|
1998-03-26
|
1KB
|
59 lines
// coursset.cpp : implementation file
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1998 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.
#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 = "";
m_CourseTitle = "";
m_Hours = 0;
m_nFields = 3;
//}}AFX_FIELD_INIT
m_nDefaultType = dynaset;
}
CString CCourseSet::GetDefaultConnect()
{
return "ODBC;DSN=Student Registration;";
}
CString CCourseSet::GetDefaultSQL()
{
return "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
}