Libpqxx is the official C++ client API for PostgreSQL, the enterprise-strength open-source database software.
1
vote
2answers
38 views
How to use pqxx::stateless_cursor class from libpqxx?
I'm learning libpqxx, the C++ API to PostgreSQL. I'd like to use the pqxx::stateless_cursor class, but 1) I find the Doxygen output unhelpful in this case, and 2) the pqxx.org website has been down ...
0
votes
1answer
111 views
How to insert binary data into a PostgreSQL BYTEA column using the C++ libpqxx API?
I'd like to insert some binary data into a BYTEA column, but I find the Doxygen output is lacking in details, and http://pqxx.org/ has been down for the past few days.
How would I go about inserting ...
-2
votes
1answer
71 views
Error when connecting to Postgres database in C - using libpq-fe.h
Hey I am trying to connect to a database using postgres
#include <stdio.h>
#include <stdlib.h>
#include <libpq-fe.h>
int main(int argc, char* argv[])
{
//Start connection
PGconn* ...
0
votes
0answers
40 views
How to run PostgreSQL connectivity code in clang plug-in
I have written PostgreSQL connectivity code in clang plugin as shown below.
class PrintFunctionNamesAction : public PluginASTAction {
protected:
ASTConsumer *CreateASTConsumer(CompilerInstance ...
1
vote
1answer
56 views
libpqxx throws an exception during DEBUG mode
I have a MFC project that uses libpqxx. All settings are default.
Release mode is working properly as i expected. But when i switch to Debug mode, it shows an exception and says Debug Assertion:
The ...
0
votes
1answer
69 views
libpqxx under Visual Studio 2008 x64
Is anybody here who built libpqxx under Visual Studio 2008 x64?
I have built it. Debug with libpqxx_staticD.lib works fine, but Release with libpqxx_static.lib fails at
pqxx::connection conn(...);
...
1
vote
1answer
82 views
Libpqxx complaining about missing references
So I have the following problem:
g++ -std=c++0x -O3 -I/usr/include/scip main.cpp locations/locationreader.cpp locations/locationassigner.cpp scheduler.o optimizer.o dbmanager.o scheduleData.o exam.o ...
0
votes
1answer
125 views
libpqxx closing prepared statements and results
I will create a connection to a Postgresql db through libpqxx and C++ and then execute several prepared statements, which return results (and I will loop through them). I come from a Java background ...
1
vote
0answers
74 views
PQXX linking error issue
I successfuly built PQXX for PostgreSQL. This is for Windows 7 and MinGW with the CODE::BLOCKS IDE Now after much bug hunting I have a program almost linking. I get these three strange errors,
...
0
votes
1answer
111 views
using notify_listener - libpqxx
I'm trying to listen for notify events using libpqxx. I started by going off an example that extended pqxx::notify_listener.
#include <iostream>
#include <string>
#include ...
0
votes
1answer
65 views
String escape without database connection
I am trying to use the string escaping functionality without having access to an open pqxx::connection.
Consider the following code:
#include <pqxx/pqxx>
#include <iostream>
int main() ...
0
votes
1answer
247 views
Libpqxx connection pool
I am trying to develop a very simple and straightforward connection pool using the libpqxx library. I am quite new to c++ and still very confused with pointers and referencing. The behaviour of the ...
0
votes
1answer
175 views
Input Sanitization with libpq / libpqxx
I'm just getting started implementing some client software for a PostgreSQL database.
The queries will allow input parameters that come from an untrusted source. Therefore I need to sanitize my ...
0
votes
1answer
96 views
How to guess the exception type thrown by libpqxx C++ library functions?
I'm using libpqxx but I'm stuck with the following.
Some function of lets say the pqxx:connection_base class throw exception, as per the connection_base.hxx file :
void disconnect() throw ();
...
0
votes
0answers
112 views
pqxx functions not recognized from dbt-5 Make
I'm trying to build the tpc-c benchmark tool dbt-5. I want to measure the performance of a PostgreSQL implementation.
When running Make, I'm getting the following error:
Linking CXX executable ...
1
vote
1answer
262 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
2k 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
106 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 ...
2
votes
3answers
560 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 ...
2
votes
1answer
206 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
109 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 ...
0
votes
2answers
901 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 ...
1
vote
1answer
229 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>
...
0
votes
1answer
541 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 ...
1
vote
2answers
249 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)
...
0
votes
1answer
279 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
492 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
196 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 ...
2
votes
4answers
374 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
...