home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / sdsstre.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  1.1 KB  |  37 lines

  1. /****************************************************************************/
  2. /* File:   sdsstre.hpp                                                      */
  3. /* Class:                                                                   */
  4. /*         IDSStatementRetrieve                                             */
  5. /*                                                                          */
  6. /****************************************************************************/
  7.  
  8. /***********************************************
  9.  
  10.     Licensed Materials - Property of IBM
  11.  
  12.     5622-880   5801-AAR
  13.  
  14.     (c) Copyright IBM Corp 1991, 1996.
  15.  
  16. ************************************************/
  17.  
  18. #ifndef _SDSSTRE_HPP_
  19. #define _SDSSTRE_HPP_
  20.  
  21. #include <istring.hpp>
  22. #include "sdsstat.hpp"
  23.  
  24. class _Export IDSStatementRetrieve : public IDSStatement
  25. {
  26.   public:
  27.     IDSStatementRetrieve( const char* aStatement, DatastoreDB2* aDatastore );
  28.     IDSStatementRetrieve( const char* aStatement, DatastoreODBC* aDatastore );
  29.     ~IDSStatementRetrieve();
  30.  
  31.     virtual IDSStatementRetrieve& execute();
  32. };
  33.  
  34. #include "sdsstre.inl"
  35.  
  36. #endif
  37.