Tagged Questions

3
votes
1answer
360 views

Postgresql PQgetvalue: array return

I've a table created like: CREATE TABLE tbl_test ( id bigserial PRIMARY KEY, interest int ARRAY[2] ); I got PGresult* res using PQexec(conn, "SELECT * FROM tbl_test"); Now, ...
2
votes
3answers
114 views

Why do I get compilation errors when trying to connect to postgresql with c?

I tried to create a simple c programm which should connect to my postgres db, but I am not able to get aware of the following compilation errors... I am using Ubuntu (but also tried to compile on ...
2
votes
2answers
486 views

PostgreSQL's libpq: Encoding for binary transport of ARRAY[]-data?

after hours of documentations/boards/mailinglists and no progress I may ask you: How do I 'encode' my data to use it for binary transport using libpq's PQexecParams(.) ? Simple variables are just in ...
1
vote
2answers
72 views

Can I get original Query from PGresult* object in Postgres?

mConn = PQconnectdb( conninfo ); const char* pQuery = "SELECT X FROM Y..."; PGresult* stmt = PQexec( mConn, pQuery ); can I do this? char * original_query = Take( stmt ); thx
1
vote
2answers
346 views

libpq-fe.h and c program closing

I've got a problem with a C program that connects with localhost database on postgresql. Code looks similar to this: #include <stdio.h> #include <libpq-fe.h> int main() { int dane; ...
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
2answers
142 views

Getting sizeof(PGconn) with libpq

I'm attempting to wrap libpq for a program, and part of the FFI tool I'm using attempts to get sizeof() any struct in use. In this case the issue is that trying to get sizeof(PGconn) results in a ...
1
vote
2answers
654 views

Compiling libpq with iOS SDK 4.2

I'm trying to compile again the libpq for arm and i386 with the iOS SDK 4.2. I did last year for SDK3.x without any problems. Now, when I want to create the fat binary file with two files, I'm ...
1
vote
1answer
125 views

creating jobs and schedules programatically with pgagent

Is there a way to create and manage jobs/schedules in pgagent programatically, i.e. WITHOUT using pgAdmin ? I suspect there may be a way of doing this by writing a postgres client using libpq (in ...
1
vote
4answers
2k views

Connect iPhone App to PostgreSQL Using Libpq

I need to create an application for the iPhone that will connect to a PostgreSQL 8.4 database using libpq. The problem is I can't get a simple iPhone that links to libpq to compile. I am however able ...
1
vote
3answers
952 views

PostgreSQL libpq “Integer out of range” error when sending integer as binary

I'm attempting to insert some integers into a Postgres table with the following somewhat simple code. #include <libpq-fe.h> #include <stdio.h> #include <stdint.h> int main() { ...
1
vote
2answers
595 views

PostgreSQL consuming large amount of memory for persistent connection

I have a C++ application which is making use of PostgreSQL 8.3 on Windows. We use the libpq interface. We have a multi-threaded app where each thread opens a connection and keeps using without ...
0
votes
1answer
39 views

Insert Binary Large Object (BLOB) in PostgreSQL using libpq from remote machine

Can you give an example of inserting binary data in PostgreSQL database from remote machine using libpq. My second question is: Is there any other API more efficient than libpq with C++. Thanks
0
votes
1answer
132 views

Problem with library libpq in Debian

I'm installing postgresql 8.4 in Debian, put program testlibpq.c from http://www.postgresql.org/docs/9.0/interactive/libpq-example.html to directory which have file libpq-fe.h, but after compilation ...
0
votes
0answers
241 views

Connect to Postgresql Using C/C++ under Windows 7 64 bit

Im trying to connect to a Postgre Database server using a little C client that i wrote Compiling is fine but i always get this unresolved external symbol error. I almost tried everything but it seems ...
0
votes
1answer
444 views

Link error with libpq using C++

I'm trying to use libpq to connect to my PostgreSQL database and intend to call pre-defined functions once I get this working. Right now I just have the conninfo string entered, and test the ...
0
votes
1answer
1k views

Missing dependency libpq.so.4 on Centos 5 [closed]

Possible Duplicate: pg_config, ruby pg, postgresql 9.0 problem after upgrade, centos 5 This is driving me mad. I'm tring to install postgresql on a fresh Centos 5 installation and I get ...
0
votes
0answers
107 views

Libpq speed on windows

I have a problem with libpq on windows. Connecting to a db and running a "select * from some_table;" is very slow. The table has only 1800 rows, 7 columns. No blobs etc. The query is taking around ...
0
votes
0answers
394 views

How to convert a PGresult to custom data type with libpq (PostgreSQL)

I'm using the libpq library in C to accessing my PostgreSQL database. So, when I do res = PQexec(conn, "SELECT point FROM test_point3d"); I don't know how to convert the PGresult I got to my custom ...
0
votes
2answers
214 views

Force libpq to compile with 10.5

I need to compile libpq with 10.5 for using later in the simulator. I can use the libpq in the device without problems. I'm forcing with this: make clean && ./configure CFLAGS="-arch i386 ...
0
votes
1answer
143 views

PostgreSQL notice processing

I'm working on a C application that is suppose to talk to PostgreSQL. Right now I need to handle notices and warnings sent by the server but I'm at a loss on how to make it work. The (very unclear) ...
0
votes
1answer
74 views

Randomly disappearing struct

I've created a Objective-C class to interface with PostgreSQL using libpq. It mostly works but I have one small problem - the connection seems to disappear randomly. This class is set to open a ...
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 ...
0
votes
1answer
220 views

libpq send integer as binary

I have a libpq program that is routinely inserting numbers into a database. These numbers, which I'm expecting to grow quite large, are stored int the uint64_t type. I'm wanting to send the integer to ...