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

📄 statistics.h

📁 vc开发的一个cmpp(中国移动点对点通讯)通讯程序
💻 H
字号:
// Statistics.h: interface for the CStatistics class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_STATISTICS_H__E23E1F8B_4BF1_11D3_A1BC_0000E83E4191__INCLUDED_)
#define AFX_STATISTICS_H__E23E1F8B_4BF1_11D3_A1BC_0000E83E4191__INCLUDED_

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

#include "BaseDB.h"

#define SQL_INDEX_UNIQUE	0
#define SQL_INDEX_ALL		1
//#define SQL_ENSURE			0
//#define SQL_QUICK			1

class CStatistics : public CBaseDB  
{
public:
	CString m_strQualifierParam;
	CString m_strOwnerParam;
	CString m_strTableParam;
	int m_fUnique;
	int m_fAccuracy;

public:
	CStatistics(CDatabase *pDatabase);
	virtual ~CStatistics();
	virtual BOOL Open();
	void SetCondition(int fUnique,int fAccuracy);

};

#endif // !defined(AFX_STATISTICS_H__E23E1F8B_4BF1_11D3_A1BC_0000E83E4191__INCLUDED_)

⌨️ 快捷键说明

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