home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a007 / 1.ddi / BLCLONE.C next >
Encoding:
C/C++ Source or Header  |  1992-10-15  |  786 b   |  37 lines

  1. /* The SETUP.C program must be compiled and run before this example */
  2. /* can be executed. */
  3.  
  4. #include <stdio.h>
  5. #include "pxengine.h"
  6.  
  7. #define TABLENAME  "table"
  8. #define NFLDS        5
  9.  
  10. int main(void)
  11. {
  12.   TABLEHANDLE  tblHandle;
  13.   RECORDHANDLE recHandle;
  14.   PXCODE       pxErr;
  15.  
  16.   PXInit();
  17.  
  18.   /* Open a table that contains a BLOB field. */
  19.  
  20.   PXTblOpen(TABLENAME, &tblHandle, 0, 0);
  21.   PXRecBufOpen(tblHandle, &recHandle);
  22.  
  23.   /* Put the record into the buffer. */
  24.  
  25.   PXRecGet(tblHandle, recHandle);
  26.  
  27.   /* Clone all existing BLOB fields in the record buffer. */
  28.  
  29.   if((pxErr = PXBlobClone(recHandle, 0)) != PXSUCCESS)
  30.     printf("%s\n", PXErrMsg(pxErr));
  31.  
  32.   PXRecBufClose(recHandle);
  33.   PXTblClose(tblHandle);
  34.   pxErr = PXExit();
  35.   return (pxErr);
  36. }
  37.