linux下postgresql的c程序编译问题

linux下c程序使用postgresql 8.4连接数据库时编译出现的问题。

1.

问题:In function `main':

`PGconn' undeclared (first use in this function)

`PGresult' undeclared (first use in this function)

`CONNECTION_BAD' undeclared (first use in this function)

`PGRES_COMMAND_OK' undeclared (first use in this function)

`PGRES_TUPLES_OK' undeclared (first use in this function)

 

出现此问题,为缺少#include <libpq-fe.h>

2.

问题:libpq-fe.h: No such file or directory
解决:系统未查找到libpq-fe.h,需要指定其目录
方式1:gcc -c -I/usr/local/pgsql/include test.c
方式2:Makefile文件中,CPPFLAGS += -I/usr/local/pgsql/include

3.编译.c至.o通过,但链接时出现如下问题
In function `main':
undefined reference to `PQsetdbLogin'
undefined reference to `PQstatus'
undefined reference to `PQerrorMessage'
解决:此为缺少链接所需的库文件导致,需手动指定其目录

 

gcc -o test test1.o test2.o -L/usr/local/pgsql/lib -lpq

 

 

编译成功。

 

参考:http://www.postgresql.org/docs/8.4/interactive/libpq-build.html

 总结:更多详细至官方搜索解决方案,google时多使用site:来限定搜索范围,更快速找到问题解决方法。

 

 

转载于:https://www.cnblogs.com/xfiver/archive/2012/02/17/2355642.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值