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 - /* the setup.c and putdate.c programs must be compiled and run */ http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
/* The SETUP.C and PUTDATE.C programs must be compiled and run */
/* before this example can be executed. */

#include <stdio.h>
#include "pxengine.h"

#define TABLENAME  "numbers"

int main(void)
{
  RECORDHANDLE  recHandle;
  FIELDHANDLE   fldHandle = 2;
  TABLEHANDLE   tblHandle;
  TDATE         date;
  int           month, day, year;
  PXCODE        pxErr;

  PXInit();
  PXTblOpen(TABLENAME, &tblHandle, 0, 0);
  PXRecBufOpen(tblHandle, &recHandle);
  PXRecGet(tblHandle, recHandle);

  /* Get a date field out of a record buffer. */

  if ((pxErr = PXGetDate(recHandle, fldHandle, &date))
    != PXSUCCESS)
    printf("%s\n", PXErrMsg(pxErr));
  else
  {
    PXDateDecode(date, &month, &day, &year);
    printf("Date: %d/%d/%d\n", month, day, year);
  }

  PXRecBufClose(recHandle);
  PXTblClose(tblHandle);
  PXExit();
  return(pxErr);
}
.

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