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

数据库系统

开发平台:

Visual C++

  1. // cff.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "课程设计.h"
  5. #include "cff.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // cff
  13. IMPLEMENT_DYNAMIC(cff, CRecordset)
  14. cff::cff(CDatabase* pdb)
  15. : CRecordset(pdb)
  16. {
  17. //{{AFX_FIELD_INIT(cff)
  18. m_administrator = _T("");
  19. m_secrect = _T("");
  20. m_nFields = 2;
  21. //}}AFX_FIELD_INIT
  22. m_nDefaultType = snapshot;
  23. }
  24. CString cff::GetDefaultConnect()
  25. {
  26. return _T("ODBC;DSN=resource");
  27. }
  28. CString cff::GetDefaultSQL()
  29. {
  30. return _T("[管理员密码表]");
  31. }
  32. void cff::DoFieldExchange(CFieldExchange* pFX)
  33. {
  34. //{{AFX_FIELD_MAP(cff)
  35. pFX->SetFieldType(CFieldExchange::outputColumn);
  36. RFX_Text(pFX, _T("[administrator]"), m_administrator);
  37. RFX_Text(pFX, _T("[secrect]"), m_secrect);
  38. //}}AFX_FIELD_MAP
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // cff diagnostics
  42. #ifdef _DEBUG
  43. void cff::AssertValid() const
  44. {
  45. CRecordset::AssertValid();
  46. }
  47. void cff::Dump(CDumpContext& dc) const
  48. {
  49. CRecordset::Dump(dc);
  50. }
  51. #endif //_DEBUG