users.h
来自「ADO数据库连接的程序 请赶紧通过 我需要下载东西」· C头文件 代码 · 共 37 行
H
37 行
// Users.h: interface for the CUsers class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_USERS_H__4C0626E9_67B3_43C9_AA9A_13577D952E8E__INCLUDED_)
#define AFX_USERS_H__4C0626E9_67B3_43C9_AA9A_13577D952E8E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CUsers
{
private:
int UserId;
CString UserName;
CString UserPwd;
public:
CUsers();
virtual ~CUsers();
//设置和读取成员变量值
int GetUserId();
void SetUserId(int vUserId);
CString GetUserName();
void SetUserName(CString vUserName);
CString GetUserPwd();
void SetUserPwd(CString vUserPwd);
//数据库操作
void sql_insert();
void sql_update(CString cUserId);
void sql_delete(CString cUserId);
//根据用户编号读取所有字段值
void GetData(CString cUserId);
};
#endif // !defined(AFX_USERS_H__4C0626E9_67B3_43C9_AA9A_13577D952E8E__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?