biodb.h
来自「通过MS的ADO对数据库进行操作.包括连接,读数据,修改数据,删除数据等」· C头文件 代码 · 共 56 行
H
56 行
// BioDB.h: interface for the CBioDB class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_BIODB_H__14158A1E_35B9_41F6_82DC_88DCFEDB1E98__INCLUDED_)
#define AFX_BIODB_H__14158A1E_35B9_41F6_82DC_88DCFEDB1E98__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CBioDB
{
public:
CBioDB();
virtual ~CBioDB();
};
class Csysadmin
{
public:
void DelUInfoByID(CString ID);
BOOL UDataUInfoSA(CString saID);
void LoadsysAdminInfo(VARIANT* returnValue);
bool InsertSysAdmin();
void SInfosysAdmin(CString saID);
void DeleteAll();
void setSaID(CString newvalue);
void setSaName(CString newvalue);
void setSaType(CString newvalue);
void setSaPSW(CString newvalue);
CString getSaID();
CString getSaName();
CString getSaType();
CString getSaPSW();
Csysadmin();
virtual ~Csysadmin();
private:
CString g_strAppPath;//模块地址
CString m_saID;
CString m_saName;
CString m_saType;
CString m_saPSW;
CString m_ConnectString;
_RecordsetPtr m_Record;//记录集对象
_ConnectionPtr m_Connect;//连接对象
};
#endif // !defined(AFX_BIODB_H__14158A1E_35B9_41F6_82DC_88DCFEDB1E98__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?