home *** CD-ROM | disk | FTP | other *** search
- // JoinSet.h : interface of the CJoinSet class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CJoinSet : public CDaoRecordset
- {
- public:
- CJoinSet(CDaoDatabase* pDatabase = NULL);
- DECLARE_DYNAMIC(CJoinSet)
-
- // Field/Param Data
- //{{AFX_FIELD(CJoinSet, CDaoRecordset)
- long m_Employee_Number;
- CString m_Last_Name;
- CString m_First_Name;
- short m_Department__;
- short m_Employee_Pay_Type;
- double m_Hours;
- double m_Hourly_Rate;
- double m_Weekly_Salary;
- double m_Sales_Bonus_Rate;
- double m_Weekly_Sales;
- long m_Employee_Number2;
- COleDateTime m_Birthdate;
- BYTE m_Sex___Marital_Status;
- double m_Height;
- double m_Weight;
- //}}AFX_FIELD
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CJoinSet)
- public:
- virtual CString GetDefaultDBName(); // REVIEW: Get a comment here
- virtual CString GetDefaultSQL(); // default SQL for Recordset
- virtual void DoFieldExchange(CDaoFieldExchange* pFX); // RFX support
- //}}AFX_VIRTUAL
-
- // Implementation
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- };
-