home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a007 / 1.ddi / BLDROP.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-15  |  788 b   |  36 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. void main(void)
  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.   /* Get a record with a reference to a BLOB in field 4. */
  24.  
  25.   PXRecGet(tblHandle, recHandle);
  26.  
  27.   /* Free the space associated with the BLOB referenced in field 4. */
  28.  
  29.   if((pxErr = PXBlobDrop(recHandle, 4)) != PXSUCCESS)
  30.     printf("%s\n", PXErrMsg(pxErr));
  31.  
  32.   PXRecBufClose(recHandle);
  33.   PXTblClose(tblHandle);
  34.   PXExit();
  35. }
  36.