Win Client & PostgreSQL FreeBSD - Mailing list pgsql-interfaces

From Michael Vodep
Subject Win Client & PostgreSQL FreeBSD
Date
Msg-id 21212.1054411381@www59.gmx.net
Whole thread Raw
Responses Re: Win Client & PostgreSQL FreeBSD  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-interfaces
Hoi!
With following Source i try to connect a PostgreSQL Database running on
FreeBSD:
=========================
PGconn *conn;
conn = PQsetdbLogin("192.168.1.34", "5432", NULL, NULL,
"mainhm","mike","****");  
CString err;
if (PQstatus(conn) == CONNECTION_BAD) {
err.Format("Es ist ein Fehler aufgetretenn%s", PQerrorMessage(conn));
AfxMessageBox(err, MB_ICONSTOP | MB_OK);
TRACE("%s", err);
PQfinish(conn);
}
=========================
Following error is displayed in the Debug Window:
connectDBStart() -- connect() failed Is the postmaster running (with -i) at
'192.168.1.34' and accepting connections on TCP/IP port 5432?

=========================
PGconn *conn;
conn = PQconnectdb("hostaddr='192.168.1.34' port='5432'");
=========================
Followings errors are displayed:
Postmaster: Unexpected EOF of client connection
Client: fe_sendauth: authentication type 5 not supported

Postmaster is running with -i option and i can connect with the pgadmin II
without any problems :/
I have Visual C++ SP 5 and  Win2000 SP2

What have i done wrong?
thx & cya mike
Sorry for my bad English :) 

-- 
+++ GMX - Mail, Messaging & more  http://www.gmx.net +++
Bitte lächeln! Fotogalerie online mit GMX ohne eigene Homepage!



pgsql-interfaces by date:

Previous
From: Tom Lane
Date:
Subject: Re: DBD::Pg 1.30_1 WAS (Re: Prepare and prepare ?)
Next
From: Tom Lane
Date:
Subject: Re: Win Client & PostgreSQL FreeBSD