ex28aset.h

来自「vc++技术内幕第四版(清华版)源码。vc++技术内幕书是vc++的权威书籍」· C头文件 代码 · 共 51 行

H
51
字号
#if !defined(AFX_EX28ASET_H__4C4C252E_6EAD_11D0_8609_F283035DC070__INCLUDED_)
#define AFX_EX28ASET_H__4C4C252E_6EAD_11D0_8609_F283035DC070__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// ex28aset.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CEx28aSet recordset

class CEx28aSet : public CRecordset
{
public:
	CEx28aSet(CDatabase* pDatabase = NULL);
	DECLARE_DYNAMIC(CEx28aSet)

// Field/Param Data
	//{{AFX_FIELD(CEx28aSet, CRecordset)
	long	m_StudentID;
	CString	m_Name;
	int		m_GradYear;
	CString	m_CourseID;
	CString	m_Grade;
	CString	m_SectionNo;
	long	m_StudentID2;
	//}}AFX_FIELD


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CEx28aSet)
	public:
	virtual CString GetDefaultConnect();    // Default connection string
	virtual CString GetDefaultSQL();    // Default SQL for Recordset
	virtual void DoFieldExchange(CFieldExchange* pFX);  // RFX support
	//}}AFX_VIRTUAL

// Implementation
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_EX28ASET_H__4C4C252E_6EAD_11D0_8609_F283035DC070__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?