7.2.1 failure to complie C programs - Mailing list pgsql-interfaces

From rexrecio@yahoo.com (Rex Recio)
Subject 7.2.1 failure to complie C programs
Date
Msg-id f06e5984.0209011937.2cd2052a@posting.google.com
Whole thread Raw
Responses Re: 7.2.1 failure to complie C programs
List pgsql-interfaces
I have been trying to compile my first C program on PostgreSQL 7.1.2. 
Here is my source code:

/*filename is hello.c*/
#include <stdio.h>
#include "libpq-fe.h"

int main (int argc, char *argv[])
{  PGConn *masterConn;  printf("Hello World!\n");  masterConn = PQconnectdb("hostaddr=192.168.0.23 dbname=masterdb 
user=postgrespassword=postgres");  return 1;
}

I tried compliling it using gcc -c hello.c but it gives me the
following error:
hello.c: In function `main':
hello.c:6: `PGConn' undeclared (first use in this function)
hello.c:6: (Each undeclared identifier is reported only once
hello.c:6: for each function it appears in.)
hello.c:6: `masterConn' undeclared (first use in this function)

The include file for POstgreSQL is already located at the
/usr/include.  Nevertheless I also tried specifying it in the
complier.  I tried compiling using:
gcc -c hello.c -I/usr/include 
gcc -c hello.c -I/usr/include/pgsql

I got the same error.

I'm using RedHat 7.3 and the default Postgres installation that comes
with it, 7.2.1.  I noticed that there is an 'undeclared error' for
PGConn but not for 'PQConnectdb'.  I examnined the header file and
true enough there is no declaration for PGConn.

Is there anybody out there who had the same experience and was able to
fix it?  Please help.


pgsql-interfaces by date:

Previous
From: "Dave Page"
Date:
Subject: Re: [HACKERS] pgaccess - where to store the own data
Next
From: terry
Date:
Subject: Re: pgaccess - where to store the own data