PostgreSQL是一款在Linux环境下应用十分普遍的轻量级关系型数据库,你们都据说过MySQL,却对PostgreSQL鲜有耳闻,它其实在性能、应用领域上和MySQL不相上下。网上关于Windows环境下C/C++访问PostgreSQL数据库的资料不多,文本分析了C/C++访问PostgreSQL数据库的过程。php
Windows环境C/C++访问PostgreSQL主要有两种方式:利用Qt封装的数据库访问组件、利用PostgreSQL的API函数。使用Qt平台访问PostgreSQL的局限性很大,一旦脱离了访问组件,数据库就没法操做。使用数据库自带的API函数访问数据库具备较好的性能,可是API函数操做、理解比较难,网上相关资料少时须要阅读API文档。html
一、环境配置
(1)文本使用的IDE是VS2010,咱们须要配置包含目录(include)、库目录(lib)、连接器输入附加依赖(libpq.lib
);sql
(2)工程目录下须要加入4个dll文件(libeay32.dll
、libintl.dll
、libpq.dll
、ssleay32.dll
),这些文件都能在PostgreSQL安装目录下找到;
(3)工程cpp文件中加入头文件#include <libpq-fe.h>
,libpq-fe.h
头文件包含了API接口函数声明及注释,下面介绍的函数在libpq-fe.h
中都能找到。数据库
二、链接数据库
(1)数据库链接函数函数
extern PGconn *PQsetdbLogin(const char *pghost, const char *pgport, const char *pgoptions, const char *pgtty, const char *dbName, const char *login, const char *pwd);
返回值PGconn *
指针,即链接指针。若是你要对PQsetdbLogin
函数封装的话,记得将形参链接指针设成PGconn *&
引用类型,由于链接函数须要对链接指针修改,而不是修改对象!pghost
:主机地址,本机为127.0.0.1
或localhost
;pgport
:端口值,通常为5432;pgoptions
:额外选项,NULL
便可;pgtty
:NULL
便可;dbName
:数据库名;user
:用户名;pwd
:密码;工具
(2)错误显示函数extern char *PQerrorMessage(const PGconn *conn)
当链接有误时,可使用PQerrorMessage
函数显示出错信息。post
封装成ConnectToDB
函数:性能
bool ConnectToDB(PGconn *&conn,char *pghost,char *pgport,char *dbname,char *user,char *pwd) { //pgoptions、pgtty参数默认为NULL char *pgoptions,*pgtty; pgoptions=NULL; pgtty=NULL; conn=PQsetdbLogin(pghost,pgport,pgoptions,pgtty,dbname,user,pwd); if(PQstatus(conn)==CONNECTION_BAD) // or conn==NULL { cout<<"Connection db "<<dbname<<" failed!"<<endl; cout<<PQerrorMessage(conn)<<endl; return false; } else { cout<<"Connection db "<<dbname<<" success!"<<endl; return true; } }
三、执行SQL语句
执行SQL语句主要是增删改查,只有查询会返回有效记录集。
(1)SQL执行函数extern PGresult *PQexec(PGconn *conn, const char *query)
返回值PGresult *
:查询集指针;conn
:链接指针;query
:SQL语句;
(2)元组数函数extern int PQntuples(const PGresult *res)
返回值:查询集中记录数;res
:查询集指针;
(3)字段数函数extern int PQnfields(const PGresult *res)
返回值:每条记录中列数(字段数);res
:查询集指针;
(4)取值函数extern char *PQgetvalue(const PGresult *res, int tup_num, int field_num);
返回值:查询集中每一个位置的值;res
:查询集指针;tup_num
:行号,从0开始;field_num
:列号,从0开始;spa
封装成ExecSQL
函数:指针
bool ExecSQL(PGconn *conn,const char *sql) { PGresult *res=NULL; if(conn==NULL) { cout<<"Conn is null"<<endl; return false; } else { res=PQexec(const_cast<PGconn *>(conn),sql); if(res==NULL) { return false; } else { // 输出记录 int tuple_num=PQntuples(res); int field_num=PQnfields(res); for(int i=0;i<tuple_num;++i) { for(int j=0;j<field_num;++j) cout<<PQgetvalue(res,i,j)<<" "; cout<<endl; } ClearQuery(res); return true; } } }
四、关闭链接
(1)查询集清理函数extern void PQclear(PGresult *res)
res
:查询集指针;
(1)关闭链接函数extern void PQfinish(PGconn *conn)
conn
:链接指针;
五、错误查询
许多时候执行SQL语句后,数据表没有变化,程序也不报错,这种状况很难发现错误。咱们须要使用PostgreSQL提供的errorMessage
和status
函数追踪程序变量的状态。
好比:
(1)PQerrorMessage
函数提供了PGconn链接指针的出错信息;
(2)PQresultErrorMessage
函数提供了PGresult查询集指针的出错信息;
(3)PQresultStatus
函数返回查询集指针的状态信息ExecStatusType
,这是个枚举enum
类型:
typedef enum { PGRES_EMPTY_QUERY = 0, /* empty query string was executed */ PGRES_COMMAND_OK, /* a query command that doesn't return * anything was executed properly by the * backend */ PGRES_TUPLES_OK, /* a query command that returns tuples was * executed properly by the backend, PGresult * contains the result tuples */ PGRES_COPY_OUT, /* Copy Out data transfer in progress */ PGRES_COPY_IN, /* Copy In data transfer in progress */ PGRES_BAD_RESPONSE, /* an unexpected response was recv'd from the * backend */ PGRES_NONFATAL_ERROR, /* notice or warning message */ PGRES_FATAL_ERROR, /* query failed */ PGRES_COPY_BOTH, /* Copy In/Out data transfer in progress */ PGRES_SINGLE_TUPLE /* single tuple from larger resultset */ } ExecStatusType;
有了这些工具,发现错不是难事!
最后附上PostgreSQL中文文档:PostgreSQL Document、API接口文档
文章来源:http://tanhp.com/index.php/archives/208/