发布网友 发布时间:2022-12-17 00:51
共1个回答
热心网友 时间:2023-09-12 13:40
这个先建立一个MFC的文档,如果是用DELPHI就建立一个工程。然后在上面放置相应的label和edit button按钮,差写入相应的代码其中可以建立一个person类 class person { //构造函数自己生成,就不打字 private: CString m_sName; CSring m_sSex; UINT m_iAge; public: //建立自己的函数,比如 void SetAge(int age) { m_iAge = age}; int GetAge () { return m_iAge}; } class stent : public person { private: int No; } 访问数据库用ADO SQL语句 delete from 表名 where 字段 = 条件 insert into 表名 (字段,...) values (值,...) update 表名 set 字段 = 值 , ... where 字段 = 值 select * from 表名 where 字段 = 值