循序渐进PostgreSQL: 学习pqxx C++ API访问
习惯了C++来开发的人,可能更倾向于使用c++库来访问PostgreSQL。libpqxx很早以前就推出了。目前已经到了4.0版。本文就简单的介绍
1. 简介
习惯了C++来开发的人,可能更倾向于使用c++库来访问PostgreSQL。libpqxx很早以前就推出了。目前已经到了4.0版。本文就简单的介绍如何使用它,,Linux平台编译相对简单,这里就介绍一下Windows平台下的使用。
libpqxx的下载地址:直接上这里
由于libpqxx对libpq的C-API进行了很好的封装,从而可以节省大量的编码时间。
2. 编译过程
将libpqxx解压到一固定目录。你需要提前编译好或安装好的客户端库,通常为了方便,这里假定你已经有一个PG的安装版或者解压缩版,在c:\pgsql里头。以PG9.x为例。
1. 进入libpqxx源码目录,备份并修改win32\common文件,将PGSQLSRC的值指向正确的地方:
这里是PGSQLSRC="c:\pgsql"
后边还有很多目录位置需要调整,针对我们这种情况,通常都是保留安装版本的设置,如:LIBPQINC=$(PGSQLSRC)\include, 而注释掉#LIBPQINC=$(PGSQLSRC)\interfaces\libpq, 其它几个值都如此类推。
2. 拷贝一些编译相关的头文件
针对具体版本,9.0的,将config\sample-headers\libpq\9.0\pqxx复制到include下边
针对VS2008的,将config\sample-headers\compiler\VisualStudio2008\pqxx复制到include目录下边, 如果是VS2005,以此类推。
3. 编译
program files->VS2008-->Visual studio tools->Visual Studio 2008 Command Prompt, 进入命令行, 在此进入libpqxx的源代码根目录,执行:
nmake /f win32\vc-libpqxx.mak ALL,
得到如下中间过程:
link.exe kernel32.lib ws2_32.lib advapi32.lib /nologo /dll /machine:I386
shell32.lib secur32.lib wldap32.lib /libpath:"C:\hisql-x86-2.0.1"\lib libpq.lib
"ObjDllRelease\binarystring.obj" "ObjDllRelease\connection.obj" "ObjDllRelea
se\connection_base.obj" "ObjDllRelease\cursor.obj" "ObjDllRelease\dbtransactio
n.obj" "ObjDllRelease\errorhandler.obj" "ObjDllRelease\except.obj" "ObjDllRel
ease\field.obj" "ObjDllRelease\largeobject.obj" "ObjDllRelease\nontransaction.
obj" "ObjDllRelease\notification.obj" "ObjDllRelease\notify-listen.obj" "ObjD
llRelease\pipeline.obj" "ObjDllRelease\prepared_statement.obj" "ObjDllRelease\
result.obj" "ObjDllRelease\robusttransaction.obj" "ObjDllRelease\statement_par
ameters.obj" "ObjDllRelease\strconv.obj" "ObjDllRelease\subtransaction.obj" "
ObjDllRelease\tablereader.obj" "ObjDllRelease\tablestream.obj" "ObjDllRelease\
tablewriter.obj" "ObjDllRelease\transaction.obj" "ObjDllRelease\transaction_ba
se.obj" "ObjDllRelease\tuple.obj" "ObjDllRelease\util.obj" "ObjDllRelease\lib
pqxx.obj" /out:"lib\libpqxx.dll" /implib:"lib\libpqxx.lib"
Creating library lib\libpqxx.lib and object lib\libpqxx.exp
[plain] view plaincopyprint?
link.exe kernel32.lib ws2_32.lib advapi32.lib /nologo /dll /machine:I386
shell32.lib secur32.lib wldap32.lib /libpath:"C:\hisql-x86-2.0.1"\lib libpq.lib
"ObjDllRelease\binarystring.obj" "ObjDllRelease\connection.obj" "ObjDllRelea
se\connection_base.obj" "ObjDllRelease\cursor.obj" "ObjDllRelease\dbtransactio
n.obj" "ObjDllRelease\errorhandler.obj" "ObjDllRelease\except.obj" "ObjDllRel
ease\field.obj" "ObjDllRelease\largeobject.obj" "ObjDllRelease\nontransaction.
obj" "ObjDllRelease\notification.obj" "ObjDllRelease\notify-listen.obj" "ObjD
llRelease\pipeline.obj" "ObjDllRelease\prepared_statement.obj" "ObjDllRelease\
result.obj" "ObjDllRelease\robusttransaction.obj" "ObjDllRelease\statement_par
ameters.obj" "ObjDllRelease\strconv.obj" "ObjDllRelease\subtransaction.obj" "
ObjDllRelease\tablereader.obj" "ObjDllRelease\tablestream.obj" "ObjDllRelease\
tablewriter.obj" "ObjDllRelease\transaction.obj" "ObjDllRelease\transaction_ba
se.obj" "ObjDllRelease\tuple.obj" "ObjDllRelease\util.obj" "ObjDllRelease\lib
pqxx.obj" /out:"lib\libpqxx.dll" /implib:"lib\libpqxx.lib"
Creating library lib\libpqxx.lib and object lib\libpqxx.exp
link.exe kernel32.lib ws2_32.lib advapi32.lib /nologo /dll /machine:I386
shell32.lib secur32.lib wldap32.lib /libpath:"C:\hisql-x86-2.0.1"\lib libpq.lib
"ObjDllRelease\binarystring.obj" "ObjDllRelease\connection.obj" "ObjDllRelea
se\connection_base.obj" "ObjDllRelease\cursor.obj" "ObjDllRelease\dbtransactio
n.obj" "ObjDllRelease\errorhandler.obj" "ObjDllRelease\except.obj" "ObjDllRel
ease\field.obj" "ObjDllRelease\largeobject.obj" "ObjDllRelease\nontransaction.
obj" "ObjDllRelease\notification.obj" "ObjDllRelease\notify-listen.obj" "ObjD
llRelease\pipeline.obj" "ObjDllRelease\prepared_statement.obj" "ObjDllRelease\
result.obj" "ObjDllRelease\robusttransaction.obj" "ObjDllRelease\statement_par
ameters.obj" "ObjDllRelease\strconv.obj" "ObjDllRelease\subtransaction.obj" "
ObjDllRelease\tablereader.obj" "ObjDllRelease\tablestream.obj" "ObjDllRelease\
tablewriter.obj" "ObjDllRelease\transaction.obj" "ObjDllRelease\transaction_ba
se.obj" "ObjDllRelease\tuple.obj" "ObjDllRelease\util.obj" "ObjDllRelease\lib
pqxx.obj" /out:"lib\libpqxx.dll" /implib:"lib\libpqxx.lib"
Creating library lib\libpqxx.lib and object lib\libpqxx.exp 最终会在lib目录下生成:
[plain] view plaincopyprint?
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0>dir/b/s lib
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpq.dll
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpq.lib
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxx.dll
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxx.dll.manifest
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxx.exp
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxx.lib
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxxD.dll
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxxD.dll.manifest
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxxD.exp
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxxD.ilk
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxxD.lib
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxxD.pdb
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxx_static.lib
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxx_staticD.lib
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\msdia80.dll
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0>dir/b/s lib
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpq.dll
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpq.lib
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxx.dll
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxx.dll.manifest
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxx.exp
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxx.lib
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxxD.dll
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxxD.dll.manifest
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxxD.exp
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxxD.ilk
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxxD.lib
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxxD.pdb
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxx_static.lib
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\libpqxx_staticD.lib
D:\Projects\hisql.svn\trunk\learning\libpqxx-4.0\lib\msdia80.dll
下边来看看最简单的示例:
iihero=# create user foo password 'foo1';
CREATE ROLE
[sql] view plaincopyprint?
iihero=> create table t(id int primary key, col2 varchar(32));
注意: CREATE TABLE / PRIMARY KEY 将要为表 "t" 创建隐含索引 "t_pkey"
CREATE TABLE
iihero=> \encoding
GBK
iihero=> insert into t values(1 ,'不同类型的列表');
INSERT 0 1
iihero=> select * from t;
id | col2
----+----------------
1 | 不同类型的列表
(1 行记录)
iihero=> create table t(id int primary key, col2 varchar(32));
注意: CREATE TABLE / PRIMARY KEY 将要为表 "t" 创建隐含索引 "t_pkey"
CREATE TABLE
iihero=> \encoding
GBK
iihero=> insert into t values(1 ,'不同类型的列表');
INSERT 0 1
iihero=> select * from t;
id | col2
----+----------------
1 | 不同类型的列表
(1 行记录)
将编译出来后的include, lib目录提取到固定的目录,与你原来的postgresql的include和lib目录,可以合到一起。给开发使用。
下边是一个最简单的示例:
[cpp] view plaincopyprint?
#include <iostream></p> <p>#include <pqxx/pqxx></p> <p>int main()</p> <p>{</p> <p>pqxx::connection conn("dbname=iihero hostaddr=127.0.0.1 user=foo password=foo1" );</p> <p>if(conn.is_open())</p> <p>{</p> <p>std::cout << "Connection succesful!" << std::endl;</p> <p>std::cout << conn.options()<<std::endl;</p> <p>}</p> <p>else</p> <p>{</p> <p>std::cout << "Something went wrong... oops" << std::endl;</p> <p>}</p> <p>pqxx::work w(conn);</p> <p>pqxx::result res = w.exec("SELECT 1");</p> <p>w.commit();</p> <p>std::cout << res[0][0].as<int>() << std::endl;</p> <p>}</p> <p>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











The main role of MySQL in web applications is to store and manage data. 1.MySQL efficiently processes user information, product catalogs, transaction records and other data. 2. Through SQL query, developers can extract information from the database to generate dynamic content. 3.MySQL works based on the client-server model to ensure acceptable query speed.

InnoDB uses redologs and undologs to ensure data consistency and reliability. 1.redologs record data page modification to ensure crash recovery and transaction persistence. 2.undologs records the original data value and supports transaction rollback and MVCC.

Compared with other programming languages, MySQL is mainly used to store and manage data, while other languages such as Python, Java, and C are used for logical processing and application development. MySQL is known for its high performance, scalability and cross-platform support, suitable for data management needs, while other languages have advantages in their respective fields such as data analytics, enterprise applications, and system programming.

MySQL index cardinality has a significant impact on query performance: 1. High cardinality index can more effectively narrow the data range and improve query efficiency; 2. Low cardinality index may lead to full table scanning and reduce query performance; 3. In joint index, high cardinality sequences should be placed in front to optimize query.

The basic operations of MySQL include creating databases, tables, and using SQL to perform CRUD operations on data. 1. Create a database: CREATEDATABASEmy_first_db; 2. Create a table: CREATETABLEbooks(idINTAUTO_INCREMENTPRIMARYKEY, titleVARCHAR(100)NOTNULL, authorVARCHAR(100)NOTNULL, published_yearINT); 3. Insert data: INSERTINTObooks(title, author, published_year)VA

MySQL is suitable for web applications and content management systems and is popular for its open source, high performance and ease of use. 1) Compared with PostgreSQL, MySQL performs better in simple queries and high concurrent read operations. 2) Compared with Oracle, MySQL is more popular among small and medium-sized enterprises because of its open source and low cost. 3) Compared with Microsoft SQL Server, MySQL is more suitable for cross-platform applications. 4) Unlike MongoDB, MySQL is more suitable for structured data and transaction processing.

InnoDBBufferPool reduces disk I/O by caching data and indexing pages, improving database performance. Its working principle includes: 1. Data reading: Read data from BufferPool; 2. Data writing: After modifying the data, write to BufferPool and refresh it to disk regularly; 3. Cache management: Use the LRU algorithm to manage cache pages; 4. Reading mechanism: Load adjacent data pages in advance. By sizing the BufferPool and using multiple instances, database performance can be optimized.

MySQL efficiently manages structured data through table structure and SQL query, and implements inter-table relationships through foreign keys. 1. Define the data format and type when creating a table. 2. Use foreign keys to establish relationships between tables. 3. Improve performance through indexing and query optimization. 4. Regularly backup and monitor databases to ensure data security and performance optimization.
