home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / catalog2 / cat2doc.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  86 lines

  1. // catalog2Doc.h : interface of the CCatalog2Doc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. class CCatalog2Doc : public CDocument
  14. {
  15. protected: // create from serialization only
  16.     CCatalog2Doc();
  17.     DECLARE_DYNCREATE(CCatalog2Doc)
  18.  
  19. // Attributes
  20. public:
  21.  
  22.     // current database
  23.     CDatabase   m_Database;
  24.  
  25.     // table stuff
  26.     CTables*    m_pTableset;
  27.     BOOL        m_bSystemTables;
  28.     BOOL        m_bViews;
  29.     BOOL        m_bSynonyms;
  30.  
  31.     // column stuff
  32.     CColumns*   m_pColumnset;
  33.     BOOL        m_bLength;
  34.     BOOL        m_bPrecision;
  35.     BOOL        m_bNullability;
  36.  
  37.     // level possibilities
  38.     enum Level
  39.     {
  40.         levelNone,
  41.         levelTable,
  42.         levelColumn
  43.     };
  44.  
  45.     Level       m_nLevel;
  46.  
  47. // Operations
  48. public:
  49.  
  50.     void    SetLevel(Level nLevel);
  51.     CString GetDSN();
  52.     void    FetchColumnInfo(LPCSTR lpszName);
  53.     BOOL    FetchTableInfo();
  54.  
  55. // Overrides
  56.     // ClassWizard generated virtual function overrides
  57.     //{{AFX_VIRTUAL(CCatalog2Doc)
  58.     public:
  59.     virtual BOOL OnNewDocument();
  60.     virtual void Serialize(CArchive& ar);
  61.     virtual void OnCloseDocument();
  62.     //}}AFX_VIRTUAL
  63.     virtual BOOL OnOpenDocument();
  64.  
  65. // Implementation
  66. public:
  67.     virtual ~CCatalog2Doc();
  68. #ifdef _DEBUG
  69.     virtual void AssertValid() const;
  70.     virtual void Dump(CDumpContext& dc) const;
  71. #endif
  72.  
  73. protected:
  74.     // helpers
  75.     int     GetProfileValue(LPCTSTR lpszSection,LPCTSTR lpszItem);
  76.  
  77. // Generated message map functions
  78. protected:
  79.     //{{AFX_MSG(CCatalog2Doc)
  80.     afx_msg void OnViewSettings();
  81.     //}}AFX_MSG
  82.     DECLARE_MESSAGE_MAP()
  83. };
  84.  
  85. /////////////////////////////////////////////////////////////////////////////
  86.