home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / daotable / querydef.h < prev    next >
Text File  |  1998-03-26  |  1KB  |  29 lines

  1. // QUERYDEF.H
  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. BOOL IsExistentQuery(CDaoDatabase *pDatabase, CString strQueryName);
  14. BOOL createNewQueryDef(CDaoDatabase * pDatabase,
  15.                                     CDaoQueryDef **ppQueryDef,
  16.                                     CString strQueryName);
  17. BOOL appendQueryDef(CDaoDatabase *pDatabase, CDaoQueryDef *pQueryDef);
  18. BOOL openQueryDef(CDaoDatabase * pDatabase, CDaoQueryDef **ppQueryDef,
  19.                   CString strQueryName);
  20. BOOL getQueryInfo(CDaoDatabase *pDatabase, CDaoQueryDefInfo *pQueryInfo,
  21.                   int index, BOOL bReportErrors = TRUE);
  22. BOOL deleteQuery(CDaoDatabase *pDatabase, CString strQueryName);
  23. BOOL createSetAndSaveNewQueryDef (CDaoDatabase * pDatabase,
  24.                                     CDaoQueryDef **ppQueryDef,
  25.                                     CDaoQueryDefInfo *pQI);
  26. BOOL modifyQueryDef (CDaoDatabase * pDatabase,
  27.                      CDaoQueryDef *pQueryDef,
  28.                      CDaoQueryDefInfo *pQI);
  29.