From: | Ashok Chauhan <ashok(at)kalculate(dot)com> |
---|---|
To: | pgsql-admin <pgsql-admin(at)postgresql(dot)org> |
Subject: | error in code |
Date: | 2003-12-08 13:55:30 |
Message-ID: | 1070891730.1268.18.camel@chi |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
hi
*********************************
# include <stdio.h>
# include <stdlib.h>
# include </usr/include/libpq-fe.h>
# include </usr/include/libpq/libpq-fs.h>
int main()
{
PGresult *result;
PGconn *conn;
int feild;
conn = PQconnectdb ("ashok");
result = PQexec (conn, "select * from bill");
feild = PQntuples (result);
printf("%d",feild);
PQclear (result);
PQfinish (conn);
printf("hello");
return 1;
}
I make the following code with the make command but give the following
the errors:-
/tmp/ccUWs9W9.o: In function `main':
/tmp/ccUWs9W9.o(.text+0x19): undefined reference to `PQconnectdb'
/tmp/ccUWs9W9.o(.text+0x2f): undefined reference to `PQexec'
/tmp/ccUWs9W9.o(.text+0x40): undefined reference to `PQntuples'
/tmp/ccUWs9W9.o(.text+0x64): undefined reference to `PQclear'
/tmp/ccUWs9W9.o(.text+0x72): undefined reference to `PQfinish'
collect2: ld returned 1 exit status
make: *** [aa] Error 1
plz help me.
From | Date | Subject | |
---|---|---|---|
Next Message | Oliver Elphick | 2003-12-08 13:58:39 | Re: error in code |
Previous Message | Andrei Bintintan | 2003-12-08 13:30:52 | Re: timestamp field |