problem connecting with libpq++ interface

From: "Deniz Hastorun" <denizh(at)itu(dot)edu(dot)tr>
To: <pgsql-novice(at)postgresql(dot)org>
Subject: problem connecting with libpq++ interface
Date: 2000-10-09 08:33:49
Message-ID: 000301c031cb$a6f378b0$25054ba0@cc.itu.edu.tr
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Hi everybody,

I have a really strange problem . I'm trying to connect to PostgreSQL db
from witin my C++ program and using the libpq++ interface functions . But
strangely it won't connect and I'm receiving the following error message

connection to db failed.
Error returned:ERROR: PQconnectdb() - Missing '=' after 'template1' in
conninfo

.here's my code
PGconn *conn1;
const char * dbname="template1";
PgDatabase data(dbname);
conn1=PQconnectdb(dbname);
if (data.ConnectionBad())
{
cerr<<" connection to db failed."<< endl
<<" Error returned:" << data.ErrorMessage() << endl;
exit(1);
}

any idea would be appreciated. thanks in advance!
deniz

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Tim Mueller-Seydlitz 2000-10-09 11:24:26 Date_Part with time fields
Previous Message ghaverla 2000-10-08 22:23:34 Re: Trouble starting postgresql