ERROR

From: Ashok Chauhan <ashok(at)kalculate(dot)com>
To: pgsql-admin <pgsql-admin(at)postgresql(dot)org>
Subject: ERROR
Date: 2003-11-22 13:47:51
Message-ID: 1069508871.1222.25.camel@chi
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin


# include <stdlib.h>
# include <libpq-fe.h>
int main()
{
int feild;
PGresult *result;
PGconn *conn;
conn = PQconnectdb("database");
result = PQexec (conn, "select * from teblename");
feild = PQntuples (result);
printf("%d",feild);
PQclear(result);
PQfinish (conn);
return (1);

}

I RUN THE ABOVE PROGRAM BUT IT GIVE SOME ERRORS THAT ARE FOLLOWS:-

/tmp/ccApFcdl.o: In function `main':
/tmp/ccApFcdl.o(.text+0x19): undefined reference to `PQconnectdb'
/tmp/ccApFcdl.o(.text+0x2f): undefined reference to `PQexec'
/tmp/ccApFcdl.o(.text+0x40): undefined reference to `PQntuples'
/tmp/ccApFcdl.o(.text+0x64): undefined reference to `PQclear'
/tmp/ccApFcdl.o(.text+0x72): undefined reference to `PQfinish'
collect2: ld returned 1 exit status

HELP ME

Responses

  • Re: ERROR at 2003-11-22 14:03:05 from Bruno LEVEQUE
  • Re: ERROR at 2003-11-22 16:14:05 from Stephan Szabo

Browse pgsql-admin by date

  From Date Subject
Next Message Bruno LEVEQUE 2003-11-22 14:03:05 Re: ERROR
Previous Message Ashok Chauhan 2003-11-22 05:56:20 re-install postgresql