From: | Vince Vielhaber <vev(at)michvhf(dot)com> |
---|---|
To: | anuj <Anuj(at)in-control(dot)de> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: linking error |
Date: | 2000-06-14 10:34:46 |
Message-ID: | Pine.BSF.4.21.0006140633440.7749-100000@paprika.michvhf.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Tue, 13 Jun 2000, anuj wrote:
> Dear sir,
> This is a small sample 'C' program.
> Compile successfully and linking error is coming in PQsetdb function.
> This program will run on Linux RH6. How to remove this linking error.
> Please waiting your valuable guidance.
> Thanx.
gcc conn.c -L/usr/local/pgsql/lib -lpg -o conn
Vince.
>
>
> ******* Compile Result ************
> [rootanuj(at)Lux2 rootanuj]$ gcc -S conn.c
> [rootanuj(at)Lux2 rootanuj]$ gcc conn.c
> /tmp/ccroTWA2.o: In function `main':
> /tmp/ccroTWA2.o(.text+0x48): undefined reference to `PQsetdbLogin'
> collect2: ld returned 1 exit status
> [rootanuj(at)Lux2 rootanuj]$
> *******************************
>
> /* conn.c */
> #include <stdio.h>
> #include "/usr/include/pgsql/libpq-fe.h"
> main()
> {
> char *pghost,
> *pgport,
> *pgoptions,
> *pgtty;
> char *dbName;
>
> PGconn *conn;
>
> pghost = NULL; /* host name of the backend server */
> pgport = "5432"; /* port of the backend server */
> pgoptions = NULL; /* special options to start up the backend
> * server */
> pgtty = NULL; /* debugging tty for the backend server */
> dbName = "template1";
>
> /* make a connection to the database */
> conn = PQsetdbLogin(pghost, pgport, pgoptions,
> pgtty,dbName,"username","password");
> /* Compile successfully and linking error is coming in PQsetdb function. */
> /* Compile cc -S conn.c */
> }
>
>
>
--
==========================================================================
Vince Vielhaber -- KA8CSH email: vev(at)michvhf(dot)com http://www.pop4.net
128K ISDN from $22.00/mo - 56K Dialup from $16.00/mo at Pop4 Networking
Online Campground Directory http://www.camping-usa.com
Online Giftshop Superstore http://www.cloudninegifts.com
==========================================================================
From | Date | Subject | |
---|---|---|---|
Next Message | Mark Hollomon | 2000-06-14 12:12:00 | Re: 7.0.2 cuts off attribute name |
Previous Message | Niall Smart | 2000-06-14 09:39:39 | Re: 7.0.2 cuts off attribute name |