I have a C Code like below with refers to both Oracle and Postgres
client libraries
#include "postgres.h "
#include "fmgr.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <oci.h>
make -f demo_rdbms.mk build OBJS=pemsPg.o
pemsPg.c:1:22: postgres.h: No such file or directory
pemsPg.c:2:18: fmgr.h: No such file or directory
client libraries
#include "postgres.h "
#include "fmgr.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <oci.h>
make -f demo_rdbms.mk build OBJS=pemsPg.o
pemsPg.c:1:22: postgres.h: No such file or directory
pemsPg.c:2:18: fmgr.h: No such file or directory
Comment