connection.h

来自「库存管理系统 用来管理仓库的」· C头文件 代码 · 共 18 行

H
18
字号
#ifndef _CONNECTION_
#define _CONNECTION_

class CConnection
{
public:
	CConnection(CString strConnection);
	~CConnection();
	bool Open();
    bool Close();
	bool isConnected();
	_RecordsetPtr Execute(CString strSql);
	bool executeUpdate(CString strSql);
private:
	_ConnectionPtr conn;
	CString m_strConnection;
};
#endif

⌨️ 快捷键说明

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