Re: problem connecting with libpq++ interface

From: Adam Haberlach <adam(at)newsnipple(dot)com>
To: Deniz Hastorun <denizh(at)itu(dot)edu(dot)tr>
Cc: pgsql-interfaces(at)postgreSQL(dot)org
Subject: Re: problem connecting with libpq++ interface
Date: 2000-10-10 07:42:12
Message-ID: 20001010004212.C3506@ricochet.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

On Mon, Oct 09, 2000 at 11:55:05AM +0300, Deniz Hastorun wrote:
>
> 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!

I think you mean

const char * dbname="dbname=template1";

(and you don't need to do the PQconnectdb() , because the PgDatabase
object will make the connection for you...)

...hope this helps...have a nice day...

--
Adam Haberlach | A billion hours ago, human life appeared on
adam(at)newsnipple(dot)com | earth. A billion minutes ago, Christianity
http://www.newsnipple.com | emerged. A billion Coca-Colas ago was
'88 EX500 | yesterday morning. -1996 Coca-Cola Ann. Rpt.

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Max Khon 2000-10-10 08:56:16 Re: Driver or Postgres doesn't report refer. integr. errors
Previous Message Vince Vielhaber 2000-10-09 23:29:33 Re: Announcing PgSQL - a Python DB-API 2.0 compliant interface to PostgreSQL