From: | Michael Vodep <mvodep(at)gmx(dot)net> |
---|---|
To: | pgsql-interfaces(at)postgresql(dot)org |
Subject: | Win Client & PostgreSQL FreeBSD |
Date: | 2003-05-31 20:03:01 |
Message-ID: | 21212.1054411381@www59.gmx.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | 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!
From | Date | Subject | |
---|---|---|---|
Next Message | Manfred Spraul | 2003-06-01 09:10:46 | Re: ECPG thread-safety |
Previous Message | Michael Vodep | 2003-05-31 08:15:45 | Got Problems with libpg.dll |