sct.cpp
上传用户:yhxbjx
上传日期:2018-11-07
资源大小:7142k
文件大小:1k
- // sct.cpp : implementation file
- //
- #include "stdafx.h"
- #include "课程设计.h"
- #include "sct.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // sct
- IMPLEMENT_DYNAMIC(sct, CRecordset)
- sct::sct(CDatabase* pdb)
- : CRecordset(pdb)
- {
- //{{AFX_FIELD_INIT(sct)
- m_user = _T("");
- m_password = _T("");
- m_nFields = 2;
- //}}AFX_FIELD_INIT
- m_nDefaultType = snapshot;
- }
- CString sct::GetDefaultConnect()
- {
- return _T("ODBC;DSN=resource");
- }
- CString sct::GetDefaultSQL()
- {
- return _T("[用户密码表]");
- }
- void sct::DoFieldExchange(CFieldExchange* pFX)
- {
- //{{AFX_FIELD_MAP(sct)
- pFX->SetFieldType(CFieldExchange::outputColumn);
- RFX_Text(pFX, _T("[user]"), m_user);
- RFX_Text(pFX, _T("[password]"), m_password);
- //}}AFX_FIELD_MAP
- }
- /////////////////////////////////////////////////////////////////////////////
- // sct diagnostics
- #ifdef _DEBUG
- void sct::AssertValid() const
- {
- CRecordset::AssertValid();
- }
- void sct::Dump(CDumpContext& dc) const
- {
- CRecordset::Dump(dc);
- }
- #endif //_DEBUG