myrecordset.h
上传用户:yhxbjx
上传日期:2018-11-07
资源大小:7142k
文件大小:1k
源码类别:

数据库系统

开发平台:

Visual C++

  1. #if !defined(AFX_MYRECORDSET_H__9684C405_B63D_4650_910F_6D35FD23CE75__INCLUDED_)
  2. #define AFX_MYRECORDSET_H__9684C405_B63D_4650_910F_6D35FD23CE75__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // myrecordset.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // myrecordset recordset
  10. #include "afxdb.h"
  11. class myrecordset : public CRecordset
  12. {
  13. public:
  14. myrecordset(CDatabase* pDatabase = NULL);
  15. DECLARE_DYNAMIC(myrecordset)
  16. // Field/Param Data
  17. //{{AFX_FIELD(myrecordset, CRecordset)
  18. CString m_ID;
  19. CString m_name;
  20. CString m_workplace;
  21. CString m_address;
  22. CString m_fixphone;
  23. CString m_phone;
  24. //}}AFX_FIELD
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(myrecordset)
  28. public:
  29. virtual CString GetDefaultConnect();    // Default connection string
  30. virtual CString GetDefaultSQL();    // Default SQL for Recordset
  31. virtual void DoFieldExchange(CFieldExchange* pFX);  // RFX support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. };
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. #endif // !defined(AFX_MYRECORDSET_H__9684C405_B63D_4650_910F_6D35FD23CE75__INCLUDED_)