ProType.h
资源名称:SQLVC.rar [点击查看]
上传用户:biney012
上传日期:2022-05-09
资源大小:4592k
文件大小:1k
源码类别:
数据库系统
开发平台:
Visual C++
- // ProType.h: interface for the CProType class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_PROTYPE_H__B7474F6B_B825_4B2D_BAF8_DBB01A98B1DA__INCLUDED_)
- #define AFX_PROTYPE_H__B7474F6B_B825_4B2D_BAF8_DBB01A98B1DA__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CProType
- {
- private:
- int TypeId;
- CString TypeName;
- int UpperId;
- public:
- CProType();
- virtual ~CProType();
- //读取和设置成员变量
- int GetTypeId();
- void SetTypeId(int iTypeId);
- CString GetTypeName();
- void SetTypeName(CString cTypeName);
- int GetUpperId();
- void SetUpperId(int iUpperId);
- //数据库操作
- int HaveName(CString cTypeName); //判断指定的产品类别名称是否在数据库中
- int HaveSon(CString cTypeId); //判断指定的产品类别是否包含子类
- void sql_insert();
- void sql_update(CString cTypeId);
- void sql_delete(CString cTypeId);
- //读取所有字段值
- void GetData(CString cTypeId);
- };
- #endif // !defined(AFX_PROTYPE_H__B7474F6B_B825_4B2D_BAF8_DBB01A98B1DA__INCLUDED_)