Problem getting a connection with Postgres 8.0.3 - Mailing list pgsql-jdbc

From Pedro Mendes
Subject Problem getting a connection with Postgres 8.0.3
Date
Msg-id 20050928221108.ADEC4D9AAA@svr1.postgresql.org
Whole thread Raw
Responses Re: Problem getting a connection with Postgres 8.0.3  (Kris Jurka <books@ejurka.com>)
List pgsql-jdbc

Hello,

 

I’m having some problems connecting my jsp application using driver postgresql-8.0-312.jdbc3 to a local postgresql database server. The connection seems to be always refused whatever the user and/or database.

This is the code I wrote:

 

                       

                        try

                        {

                                    Class.forName("org.postgresql.Driver");

                                    Connection db = DriverManager.getConnection("jdbc:postgresql://192.168.8.2/cgm","cgm","esperanca");

 

for( SQLWarning warn = db.getWarnings(); warn != null; warn = warn.getNextWarning() )

                                    {

                                                System.out.println( "SQL Warning:" ) ;

                                                System.out.println( "State  : " + warn.getSQLState()  ) ;

                                                System.out.println( "Message: " + warn.getMessage()   ) ;

                                                System.out.println( "Error  : " + warn.getErrorCode() ) ;

                                    }

….

 

This is the error returned:

 

Message: Connection refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.

Error  : 0

 

Hopping for an answer

Pedro Mendes - Portugal

 

 

pgsql-jdbc by date:

Previous
From: Alfredo Rico
Date:
Subject: How to retieve binary data (bytea) without problem ?
Next
From: Kris Jurka
Date:
Subject: Re: Problem getting a connection with Postgres 8.0.3