Home Database Mysql Tutorial 循序渐进PostgreSQL: 学习pqxx C++ API访问

循序渐进PostgreSQL: 学习pqxx C++ API访问

Jun 07, 2016 pm 05:23 PM

习惯了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>
Copy after login

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Reduce the use of MySQL memory in Docker Reduce the use of MySQL memory in Docker Mar 04, 2025 pm 03:52 PM

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

How to solve the problem of mysql cannot open shared library How to solve the problem of mysql cannot open shared library Mar 04, 2025 pm 04:01 PM

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

How do you alter a table in MySQL using the ALTER TABLE statement? How do you alter a table in MySQL using the ALTER TABLE statement? Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Run MySQl in Linux (with/without podman container with phpmyadmin) Run MySQl in Linux (with/without podman container with phpmyadmin) Mar 04, 2025 pm 03:54 PM

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

What is SQLite? Comprehensive overview What is SQLite? Comprehensive overview Mar 04, 2025 pm 03:55 PM

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

Running multiple MySQL versions on MacOS: A step-by-step guide Running multiple MySQL versions on MacOS: A step-by-step guide Mar 04, 2025 pm 03:49 PM

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

How do I configure SSL/TLS encryption for MySQL connections? How do I configure SSL/TLS encryption for MySQL connections? Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

See all articles