⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sqlcommandview.h

📁 WINCE下对SQL数据库进行读写的一个实例
💻 H
字号:
// SQLCommandView.h : interface of the CSQLCommandView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_SQLCOMMANDVIEW_H__E61EC65A_62C7_45DE_B496_DB422DC7CB66__INCLUDED_)
#define AFX_SQLCOMMANDVIEW_H__E61EC65A_62C7_45DE_B496_DB422DC7CB66__INCLUDED_

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

class CSQLCommandView : public CFormView
{
protected: // create from serialization only
	CSQLCommandView();
	DECLARE_DYNCREATE(CSQLCommandView)

public:
	//{{AFX_DATA(CSQLCommandView)
	enum { IDD = IDD_SQLCOMMAND_FORM };
	CListCtrl	m_listCtrl;
	CString	m_szSQL;
	//}}AFX_DATA

// Attributes
public:
	CSQLCommandDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CSQLCommandView)
	public:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CSQLCommandView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CSQLCommandView)
	afx_msg void OnBtnGo();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in SQLCommandView.cpp
inline CSQLCommandDoc* CSQLCommandView::GetDocument()
   { return (CSQLCommandDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft eMbedded Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_SQLCOMMANDVIEW_H__E61EC65A_62C7_45DE_B496_DB422DC7CB66__INCLUDED_)

⌨️ 快捷键说明

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