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

  1. /****************************************************************************/
  2. /* File:   sdsstde.hpp                                                      */
  3. /* Class:                                                                   */
  4. /*         IDSStatementDelete                                               */
  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 _SDSSTDE_HPP_
  19. #define _SDSSTDE_HPP_
  20.  
  21. #include <istring.hpp>
  22. #include "sdsstat.hpp"
  23.  
  24. class _Export IDSStatementDelete : public IDSStatement
  25. {
  26.   public:
  27.     IDSStatementDelete( const char* aStatement, DatastoreDB2* aDatastore );
  28.     IDSStatementDelete( const char* aStatement, DatastoreODBC* aDatastore );
  29.     ~IDSStatementDelete();
  30.  
  31.     virtual IDSStatementDelete& execute();
  32. };
  33.  
  34. #include "sdsstde.inl"
  35.  
  36. #endif
  37.