Обсуждение: Win Client & PostgreSQL FreeBSD

Поиск
Список
Период
Сортировка

Win Client & PostgreSQL FreeBSD

От
Michael Vodep
Дата:
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!



Re: Win Client & PostgreSQL FreeBSD

От
Tom Lane
Дата:
Michael Vodep <mvodep@gmx.net> writes:
> Client: fe_sendauth: authentication type 5 not supported

Looks like you need a newer copy of libpq.  I think type 5 is MD5,
which was only added in the last release or two.
        regards, tom lane