📄 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 + -