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

数据库系统

开发平台:

Visual C++

  1. // ProType.h: interface for the CProType class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PROTYPE_H__B7474F6B_B825_4B2D_BAF8_DBB01A98B1DA__INCLUDED_)
  5. #define AFX_PROTYPE_H__B7474F6B_B825_4B2D_BAF8_DBB01A98B1DA__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CProType  
  10. {
  11. private:
  12. int TypeId;
  13. CString TypeName;
  14. int UpperId;
  15. public:
  16. CProType();
  17. virtual ~CProType();
  18. //读取和设置成员变量
  19. int GetTypeId();
  20. void SetTypeId(int iTypeId);
  21. CString GetTypeName();
  22. void SetTypeName(CString cTypeName);
  23. int GetUpperId();
  24. void SetUpperId(int iUpperId);
  25. //数据库操作
  26. int HaveName(CString cTypeName); //判断指定的产品类别名称是否在数据库中
  27. int HaveSon(CString cTypeId);  //判断指定的产品类别是否包含子类
  28. void sql_insert();
  29. void sql_update(CString cTypeId);
  30. void sql_delete(CString cTypeId);
  31. //读取所有字段值
  32. void GetData(CString cTypeId);
  33. };
  34. #endif // !defined(AFX_PROTYPE_H__B7474F6B_B825_4B2D_BAF8_DBB01A98B1DA__INCLUDED_)