home *** CD-ROM | disk | FTP | other *** search
- // FastOrdersSet.h : header file
- //
- // This file is part of Microsoft SQL Server online documentation.
- // Copyright (C) 1992-1997 Microsoft Corporation. All rights reserved.
- //
- // This source code is an intended supplement to the Microsoft SQL
- // Server online references and related electronic documentation.
-
- /////////////////////////////////////////////////////////////////////////////
- // CFastOrdersSet recordset
- class CFastOrdersSet : public CRecordset
- {
- public:
- CFastOrdersSet(CDatabase* pDatabase = NULL);
- DECLARE_DYNAMIC(CFastOrdersSet)
-
- // Field/Param Data
- //{{AFX_FIELD(CFastOrdersSet, CRecordset)
- //}}AFX_FIELD
- long m_nOrderID;
- CTime m_timeOrder;
- CTime m_timeRequired;
- CTime m_timeShipped;
- CString m_strCustID;
-
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CFastOrdersSet)
- public:
- virtual CString GetDefaultConnect(); // Default connection string
- virtual CString GetDefaultSQL(); // Default SQL for Recordset
- virtual void DoFieldExchange(CFieldExchange* pFX); // RFX support
- virtual BOOL Open(UINT nOpenType = snapshot, LPCTSTR lpszSql = NULL, DWORD dwOptions = none);
- //}}AFX_VIRTUAL
-
- // Implementation
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- };
-