I m getting the following error message when i try
to get a connection through a jsp file.
"Something unusual has occured to cause the driver
to fail. Please report this exception: java.sql.SQLException: No pg_hba.conf
entry for host 161.58.235.51, user ticket, database theatick "
where
At 17:01 2000-06-26 +0530, Anupam Sanghera wrote:
>
>How can I export a postgres database to another server ?
>
Put the data into a file like this:
psql -D dbname dbname.dump.gz
Then copy the file to the new machine and do this:
createdb dbname
psql dbname < dbname.dump
Tony
--
Ant
hello,
I posted several questions in the mailing list "general", and received no
response. I think that it is not documented where to manage the
connection time-out as far as TCP/IP connections are concerned.
My problem is the following: using a JDBC client, and long-lived
connections, I see m
On Thu, 29 Jun 2000, stanislas pinte wrote:
> hello,
>
> I posted several questions in the mailing list "general", and received no
> response. I think that it is not documented where to manage the
> connection time-out as far as TCP/IP connections are concerned.
>
> My problem is the following