Daniel <danwgr...@gmail.com> writes:
> I have written a C/C++ program that trys to log into a local
> PostgreSQL database.  Here is the code:

>   pg_conn = PQconnectdb(
>     "hostaddr = '127.0.0.1' port = '' dbname = 'TBDB' user = 'sysdba'
> password = 'stelmo777' connect_timeout = '10'");
>   if (!pg_conn)
>   {
>       return false;
>   }
>   if (PQstatus(pg_conn) != CONNECTION_OK)
>   {
>       return false;  // <- execution reaches here.

> I checked the database, user and password by logging in with psql.
> What could be wrong?

If you print out the connection object's error message, you might
find out.  It's hard to guess about it without that information.

                        regards, tom lane

-- 
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Reply via email to