Users.h
上传用户:biney012
上传日期:2022-05-09
资源大小:4592k
文件大小:1k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // Users.h: interface for the CUsers class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_USERS_H__B9669D21_5CC0_436E_BA04_1C0D3DC4BE1B__INCLUDED_)
  5. #define AFX_USERS_H__B9669D21_5CC0_436E_BA04_1C0D3DC4BE1B__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CUsers  
  10. {
  11. private:
  12. CString UserName;
  13. CString Pwd;
  14. int User_type;
  15. public:
  16. CUsers();
  17. virtual ~CUsers();
  18. CString GetUserName();
  19. void SetUserName(CString cUserName);
  20. CString GetPwd();
  21. void SetPwd(CString cPwd);
  22. int GetUser_type();
  23. void SetUser_type(int iUser_type);
  24. //数据库操作
  25. int HaveName(CString cUserName); //判断指定用户名是否存在
  26. void sql_insert();  
  27. void sql_updatePwd(CString cUserName);
  28. void sql_delete(CString cUserName);
  29. //读取所有字段值
  30. void GetData(CString cUserName);
  31. };
  32. #endif // !defined(AFX_USERS_H__B9669D21_5CC0_436E_BA04_1C0D3DC4BE1B__INCLUDED_)