Tagged Questions
Libpqxx is the official C++ client API for PostgreSQL, the enterprise-strength open-source database software.
2
votes
3answers
156 views
Bulk loading of data with libpqxx
I need to bulk load a large amount of data (about 7.000.000 entries) into a PostgreSQL database using libpqxx. I have read the documentation on how to populate the database, but I am not sure on how ...
1
vote
1answer
85 views
Identifying an statement on PostgreSQL & libpq
It may sound silly, but I would need to identify which kind of SQL statement (INSERT, SELECT, UDATE, others) has an already prepared statement on PostgreSQL, while working on a C program with libpq.
...
1
vote
1answer
128 views
can't compile with libpqxx and xcode4 (c++)
I am trying to use libpqxx (3.1) in my C++ project in order to connect to my postgresql database. I am using the lastest version of xcode (xcode 4).
I correctly made the install (./configure, make ...
1
vote
2answers
66 views
viewpathing in postgres (private/individual versions of otherwise globally available tables)
I want to create a test environment where the basic underlying postgres database is overlain with an instance-localized private view, such that all queries from a specific set of processes go through ...
1
vote
1answer
109 views
PQescapeLiteral not defined?
This is about the most basic libpq example I could think of to illustrate my problem. The goal here is just to print out the escaped string.
#include <iostream>
#include <libpq-fe.h>
...
1
vote
1answer
139 views
Trouble with g++ & libpqxx lib
I've very simple example, and can't correctly build it, I was using next arguments:
g++ -lpq -libpqxx -Wall -o "pg" "pg.cpp" (in dir: /home/user)
...
1
vote
4answers
278 views
How can I access the points of the polygon stored in Postgres using Libpqxx?
I want to retrieve the points of a polygon that are stored in the
postgres db.
The contents of the db are:
polygonid |vertices
...
0
votes
1answer
118 views
Connection to Postgres Database using libpqxx
I am using libpqxx to connect to a postgres database by creating a class.
class databaseConnection
{
public:
pqxx::connection* conn;
void SetConnection(){
conn=new ...
0
votes
1answer
49 views
Create plpgsql function from libpqxx
I haven't had much luck trying to create a function from within libpqxx. I try calling exec with a string that contains the CREATE OR REPLACE function ... but I have never been able to get the syntax ...
0
votes
0answers
152 views
Working with thread in c++ and postgresql - libpqxx
Could you give me example of using boost::thread with libqxx?
I tried to create a kind of Singleton to handle a per thread connection to postgres but i'm steel having trouble with it.
Do we need to ...
0
votes
0answers
53 views
Postgresql transaction never closed error!
I have a code snippet like this:
pqxx::connection connection("dbname=content_db");
pqxx::work action(connection, "Demo");
action.exec("INSERT INTO user_ack (,'neki ip', 10:25)");
action.commit();
...
0
votes
2answers
324 views
Problem compiling program with pqxx
I'm trying to compile a very simple program (sample that does nothing) with pqxx, but cannot do it.
Here's the 'program':
$ cat xx.cpp ...
0
votes
1answer
327 views
Can't compile libpqxx tests using Netbeans
I'm trying to compile a very simple program that makes a connection to a database and prints the database name. I'm able to compile on the command line but am unable to do so in Netbeans. I'm using ...
0
votes
1answer
131 views
best practice for implementing a Search-Function via prepared statements
I'm trying to implement a Search-Function using c++ and libpqxx.
But I've got the following problem:
The user is able to specify 4 different search patterns (each of them optional):
from date
till ...
0
votes
1answer
348 views
Can't link libpqxx in MinGW
Using MSYS, I compiled libpq (from compiling postgres). I then compiled libpqxx. Now, I want to create a client that will use libpqxx. libpq seemed to work fine. And, I can compile code with ...
0
votes
1answer
99 views
Is there a way to list PostgreSQL servers?
Currently I am writing client to PostgreSQL servers. I want to list the details (ip address and port number) of the servers that is running PostgreSQL servers in the local network. Is there some ...