basedb.h

来自「公司物流电脑管理系统(非常有名).rar」· C头文件 代码 · 共 25 行

H
25
字号
// BaseDB.h: interface for the CBaseDB class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_BASEDB_H__6B6F426F_9521_11D4_90C7_5254AB1AFA1F__INCLUDED_)
#define AFX_BASEDB_H__6B6F426F_9521_11D4_90C7_5254AB1AFA1F__INCLUDED_

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

class CBaseDB  
{
public:
	CBaseDB();
	virtual ~CBaseDB();
	bool Cls_ERR;                     //错误标志
//protected:
	static _ConnectionPtr pDBCnn;    //数据库连接
	static bool Cnn_ERR;              //连接错误标志

};

#endif // !defined(AFX_BASEDB_H__6B6F426F_9521_11D4_90C7_5254AB1AFA1F__INCLUDED_)

⌨️ 快捷键说明

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