Tagged Questions

3
votes
1answer
386 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
2answers
522 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
397 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
2answers
157 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
1answer
128 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
3answers
985 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() { ...
0
votes
1answer
78 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
156 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
254 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
0answers
396 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
1answer
148 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
228 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 ...