Tagged Questions

0
votes
1answer
42 views

Randomly disappearing struct

Hi, 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
2answers
91 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 …
0
votes
1answer
29 views

Is there a way to list PostgreSQL servers?

Hi, 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
3answers
125 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
33 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 …
1
vote
1answer
131 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 …