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

数据库系统

开发平台:

Visual C++

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