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

  1. /********************************************************************************/
  2. /* File:  sdspmbsq.hpp                                                          */
  3. /* Class: IDSParameterBufferSequence                                            */
  4. /*                                                                              */
  5. /* IDSParameterBufferSequence - a parameter buffer sequence                     */
  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 _SDSPMBSQ_HPP_
  19. #define _SDSPMBSQ_HPP_
  20.  
  21. #include "spobfseq.hpp"
  22. #include "sdssqlst.hpp"
  23.  
  24. class _Export IDSParameterBufferSequence : public IPOBufferSequence
  25. {
  26.    public:
  27.      IDSParameterBufferSequence(){;}
  28.      virtual ~IDSParameterBufferSequence(){;}
  29.  
  30. /*---------------------- Buffer Seq Functions ----------------------------------
  31. | These methods deals with Buffer Seq functions:                               |
  32. |   bindToStatement - bind all parameters in seq to statement                  |
  33. ------------------------------------------------------------------------------*/
  34.     void bindToStatement( ISQLStatement* pSqlStatement);
  35.  
  36.   private:
  37.     static Boolean bindParameter (IPOBufferBase*& pBuffer,
  38.                                   void* someInfo);
  39.  
  40. };
  41.  
  42. #include "sdspmbsq.inl"
  43.  
  44. #endif
  45.