📄 wtparameter.h
字号:
/*
* 文件名: WTParameter.h
*
* 作者: 施立虹
*
* 描述: 变量,用来绑定 sql 语句中的占位符
*
* 全局变量: 无
*
* 修订记录:
* 日期 修订者 修订描述
* 2004-06-16 施立虹 创建本文件
*/
// WTParameter.h: interface for the CWTParameter class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_WTPARAMETER_H__152C7751_8ABE_4130_AA33_C694C5ED1576__INCLUDED_)
#define AFX_WTPARAMETER_H__152C7751_8ABE_4130_AA33_C694C5ED1576__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "WTField.h"
class AFX_EXT_CLASS CWTParameter :public CWTValue
{
public:
CWTParameter();
virtual ~CWTParameter();
private:
CString m_strMark; //占位符
public:
OCIBind *m_phbid; //绑定句柄
public:
BOOL SetMark(CString strMark);
CString GetMark(){return m_strMark;}
public:
CWTParameter& operator = (const int &nValue);
CWTParameter& operator = (const long &lValue);
CWTParameter& operator = (const float &flValue);
CWTParameter& operator = (const char* pszValue);
CWTParameter& operator = (const double &dlValue);
CWTParameter& operator = (const CString &strValue);
CWTParameter& operator = (const CGeometry &Geometry);
};
#endif // !defined(AFX_WTPARAMETER_H__152C7751_8ABE_4130_AA33_C694C5ED1576__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -