Lists: | Postg토토 베이SQL : Postg토토 |
---|
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 |
Lists: | Postg토토 베이SQL : Postg토토 |
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!'!!!
From: | Andy Shellam <andy(at)andycc(dot)net> |
---|---|
To: | Tuğberk Kara <tugberkkara(at)gmail(dot)com> |
Cc: | pgsql-interfaces(at)postgresql(dot)org |
Subject: | Re: connection problem |
Date: | 2006-07-31 16:16:11 |
Message-ID: | 44CE2CCB.10401@andycc.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-interfaces |
Try "host=172.16.11.2" at the start of your connection string. I
believe the parameter is "host" not "hostaddr".
Andy.
Tuğberk Kara wrote:
> 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 <http://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!'!!!
>
>
>
> !DSPAM:14,44ce2c59143296589895338!
--
Andy Shellam <mailto:andy(dot)shellam(at)mailnetwork(dot)co(dot)uk>,
the Mail Network <http://www.mailnetwork.co.uk/>
NetServe Support - we don't go the extra mile; we go the whole distance!
p: (+44) 0 845 838 0879 / +44 0 7818 000834
w: www.mailnetwork.co.uk <http://www.mailnetwork.co.uk/>
e: support(at)mailnetwork(dot)co(dot)uk <mailto:support(at)mailnetwork(dot)co(dot)uk>
From: | Volkan YAZICI <yazicivo(at)ttnet(dot)net(dot)tr> |
---|---|
To: | Tuğberk Kara <tugberkkara(at)gmail(dot)com> |
Cc: | pgsql-interfaces(at)postgresql(dot)org |
Subject: | Re: connection problem |
Date: | 2006-08-01 06:02:52 |
Message-ID: | 20060801060252.GA1323@alamut.tdm.local |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-interfaces |
On Jul 31 10:18, Tuğberk Kara wrote:
> 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");
>
> }
You're using totally wrong functions. There's even doesn't exist a
function called PGconnectStart().
First of all, I'd suggest you to either reading libpq manual[1] in the
PostgreSQL documentation or "PostgreSQL ile Programlama"[2] (in Turkish)
book's C API related section.
[1] www.postgresql.org/docs/current/interactive/libpq.html
[2] http://www.students.itu.edu.tr/~yazicivo/doc/postgresql-ile-programlama-20060214.pdf
Regards.