connection problem

From: Tuğberk Kara <tugberkkara(at)gmail(dot)com>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: connection problem
Date: 2006-07-31 07:18:18
Message-ID: beadb2f80607310018s172bc4bm3b45add868b1c58f@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

I have a postgresql installed on a remote machine. I want to connect to it
with libpq but the connection is not successful.
I have this piece of code for connection in my c file:

PGconn *conn=NULL;
char *conn_str="hostaddr=172.16.11.2 port=5432 dbname=postgres
user=postgres password=654321 reqiressl=0";
conn=PGconnectStart(conn_str);
if(PGstatus(conn)=CONNECTION_BAD){

PGerrorMessage(conn);
}
else{

printf("connected");

}

But I can not connect. It exits from the program. I tried also PGconnectdb
but it also did not connect to the databse. But I can connect to it thorough
pgAdmin with the same credentials. Can you help me please urgently!'!!!

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Michael Fuhr 2006-07-31 12:52:52 Re: SPI_getvalue fails
Previous Message vivek 2006-07-31 06:59:25 SPI_getvalue fails