Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Paradox Engine 3.0 for C - #include <stdio.h> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
#include <stdio.h>
#include "pxengine.h"

#define TABLENAME  "table"

int main(void)
{
  PXCODE pxErr;
  int    Exist;

  PXInit();

  /* Determine if the table exists. */

  if ((pxErr = PXTblExist(TABLENAME, &Exist)) != PXSUCCESS)
    printf("%s\n", PXErrMsg(pxErr));
  else
    if (Exist)
      printf("Table exists.\n");
    else
      printf("Table does not exist.\n");

  PXExit();
    return(pxErr);
}
.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson