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

数据库系统

开发平台:

Visual C++

  1. // myrecordset.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "sheji2.h"
  5. #include "myrecordset.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // myrecordset
  13. IMPLEMENT_DYNAMIC(myrecordset, CRecordset)
  14. myrecordset::myrecordset(CDatabase* pdb)
  15. : CRecordset(pdb)
  16. {
  17. //{{AFX_FIELD_INIT(myrecordset)
  18. m_ID = _T("");
  19. m_name = _T("");
  20. m_workplace = _T("");
  21. m_address = _T("");
  22. m_fixphone = _T("");
  23. m_phone = _T("");
  24. m_nFields = 6;
  25. //}}AFX_FIELD_INIT
  26. m_nDefaultType = snapshot;
  27. }
  28. CString myrecordset::GetDefaultConnect()
  29. {
  30. return _T("ODBC;DSN=water");
  31. }
  32. CString myrecordset::GetDefaultSQL()
  33. {
  34. return _T("[enter]");
  35. }
  36. void myrecordset::DoFieldExchange(CFieldExchange* pFX)
  37. {
  38. //{{AFX_FIELD_MAP(myrecordset)
  39. pFX->SetFieldType(CFieldExchange::outputColumn);
  40. RFX_Text(pFX, _T("[ID]"), m_ID);
  41. RFX_Text(pFX, _T("[name]"), m_name);
  42. RFX_Text(pFX, _T("[workplace]"), m_workplace);
  43. RFX_Text(pFX, _T("[address]"), m_address);
  44. RFX_Text(pFX, _T("[fixphone]"), m_fixphone);
  45. RFX_Text(pFX, _T("[phone]"), m_phone);
  46. //}}AFX_FIELD_MAP
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // myrecordset diagnostics
  50. #ifdef _DEBUG
  51. void myrecordset::AssertValid() const
  52. {
  53. CRecordset::AssertValid();
  54. }
  55. void myrecordset::Dump(CDumpContext& dc) const
  56. {
  57. CRecordset::Dump(dc);
  58. }
  59. #endif //_DEBUG