On Tue, 27 Jan 2004, Bhushan Bhangale wrote:
> Thanks Kris,
>
> But I am looking for a connection string for postgres in which I can specify
> username and password as well.
You can pass in the username and password by appending url parameters, for
example:
jdbc:postgresql://localhost:5432/mydb?user=fred&password=secret
Kris Jurka