home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a007 / 1.ddi / BLCLOSE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-15  |  842 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.  
  9. TABLEHANDLE   tblHandle;
  10. RECORDHANDLE  recHandle;
  11. BLOBHANDLE    blbHandle;
  12. PXCODE        pxErr;
  13.  
  14. int main(void)
  15. {
  16.   PXInit();
  17.  
  18.   /* Open a table that contains a BLOB field at field 4. */
  19.  
  20.   PXTblOpen(TABLENAME, &tblHandle, 0, 0);
  21.   PXRecBufOpen(tblHandle, &recHandle);
  22.   PXRecGet(tblHandle, recHandle);
  23.  
  24.   /* Open a BLOB for writing and then close it at field handle = 4. */
  25.  
  26.   if((pxErr = PXBlobOpenWrite(recHandle, 4, &blbHandle, 2000, PXBLOBNEW))
  27.     != PXSUCCESS)
  28.     printf("%s\n", PXErrMsg(pxErr));
  29.   else
  30.     PXBlobClose(blbHandle, PXBLOBACCEPT);
  31.  
  32.   PXRecBufClose(recHandle);
  33.   PXTblClose(tblHandle);
  34.   PXExit();
  35.   return (pxErr);
  36. }
  37.