FormatNumSet.cpp
上传用户:lqt88888
上传日期:2009-12-14
资源大小:905k
文件大小:1k
- // FormatNumSet.cpp : implementation of the CFormatNumSet class
- //
- #include "stdafx.h"
- #include "FormatNum.h"
- #include "FormatNumSet.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CFormatNumSet implementation
- IMPLEMENT_DYNAMIC(CFormatNumSet, CRecordset)
- CFormatNumSet::CFormatNumSet(CDatabase* pdb)
- : CRecordset(pdb)
- {
- //{{AFX_FIELD_INIT(CFormatNumSet)
- m_Number = 0;
- m_nFields = 1;
- //}}AFX_FIELD_INIT
- m_nDefaultType = snapshot;
- }
- CString CFormatNumSet::GetDefaultConnect()
- {
- return _T("ODBC;DSN=fmtnum");
- }
- CString CFormatNumSet::GetDefaultSQL()
- {
- return _T("[Table]");
- }
- void CFormatNumSet::DoFieldExchange(CFieldExchange* pFX)
- {
- //{{AFX_FIELD_MAP(CFormatNumSet)
- pFX->SetFieldType(CFieldExchange::outputColumn);
- RFX_Double(pFX, _T("[Number]"), m_Number);
- //}}AFX_FIELD_MAP
- }
- /////////////////////////////////////////////////////////////////////////////
- // CFormatNumSet diagnostics
- #ifdef _DEBUG
- void CFormatNumSet::AssertValid() const
- {
- CRecordset::AssertValid();
- }
- void CFormatNumSet::Dump(CDumpContext& dc) const
- {
- CRecordset::Dump(dc);
- }
- #endif //_DEBUG