myodbc_showset.h

来自「机械工业出版社《SQL Server应用开发实例教程》源代码」· C头文件 代码 · 共 52 行

H
52
字号
// myodbc_showSet.h : interface of the CMyodbc_showSet class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_MYODBC_SHOWSET_H__9368C117_E4A4_4AC2_AA6F_789E48854AA6__INCLUDED_)
#define AFX_MYODBC_SHOWSET_H__9368C117_E4A4_4AC2_AA6F_789E48854AA6__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

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

// Field/Param Data
	//{{AFX_FIELD(CMyodbc_showSet, CRecordset)
	CString	m_emp_id;
	CString	m_fname;
	CString	m_minit;
	CString	m_lname;
	int	m_job_id;
	BYTE	m_job_lvl;
	CString	m_pub_id;
	CTime	m_hire_date;
	//}}AFX_FIELD

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMyodbc_showSet)
	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 Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MYODBC_SHOWSET_H__9368C117_E4A4_4AC2_AA6F_789E48854AA6__INCLUDED_)

⌨️ 快捷键说明

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