home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a006 / 2.ddi / CEXAM.ZIP / KEYDROP.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-11  |  311 b   |  19 lines

  1. #include <stdio.h>
  2. #include "pxengine.h"
  3.  
  4. #define TABLENAME        "table"
  5.  
  6. int main(void)
  7. {
  8.     int pxErr;
  9.  
  10.     PXInit();
  11.  
  12.     /* Remove all indexes */
  13.     if ((pxErr = PXKeyDrop(TABLENAME, PRIMARY)) != PXSUCCESS)
  14.         printf("%s\n", PXErrMsg(pxErr));
  15.  
  16.     PXExit();
  17.     return(pxErr);
  18. }
  19.