?? stringsql.h
字號:
// StringSQL.h: interface for the CStringSQL class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_STRINGSQL_H__61AC3C73_034F_4B7B_BFD5_27748AB5AA9F__INCLUDED_)
#define AFX_STRINGSQL_H__61AC3C73_034F_4B7B_BFD5_27748AB5AA9F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CStringSQL
{
public:
void SetFoot(LPCSTR pFoot);
void SetWhere(CString strName, CString strCase,
BOOL bLike = TRUE, BOOL bText=TRUE);
void SetSelect(LPCSTR pSelect);
CString GetSQL();
void Reset();
CString m_strSelect;
CString m_strWhere;
CString m_strFoot;
CStringSQL();
CStringSQL(LPCSTR pSelect);
virtual ~CStringSQL();
};
#endif // !defined(AFX_STRINGSQL_H__61AC3C73_034F_4B7B_BFD5_27748AB5AA9F__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -