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

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