postgresql c library use

Posted 南瓜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgresql c library use相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
#include <libpq-fe.h>

int main() {

    int lib_ver = PQlibVersion();

    printf("Version of libpq: %d\n", lib_ver);

    return 0;
}

 

all:
	gcc -o ex_02.exe ex_02.c -I"D:/Program Files/PostgreSQL/9.5/include"  -L"D:/Program Files/PostgreSQL/9.5/lib" -lpq -std=c99

clean:
	rm -rf ex_02.exe

 注:  在使用 win7 编译的时候,需要注意gcc 版本,ld 版本,libpq.dll 版本 win版本,要一至都是 64bit 或 32bit,

当写 Makefile 文件 出现 Creaeprocess failed 时,说明 rm 命令没有找到,把rm 命令所在位置添加到path 里面。

 

以上是关于postgresql c library use的主要内容,如果未能解决你的问题,请参考以下文章

错误记录Mac 中 Python 报错 ( ERROR: Could not build wheels for numpy which use PEP 517 and cannot be in )(代

C# Query using Npgsql for Postgresql 显示重复的结果和丢失的表数据

jupytext library using in jupyter notebook

Start/Stop PostgreSQL on Mac

在R中安装软件包时出现Would you like to use a personal library instead

USE “schema_name” in PostgreSQL