Rover, Mischa de wrote:
> jdbc:postgresql://server/dbname?user=dba&password=pw&
>
> When ending the url with a '&' it works fine. Ending with a '&' is
> because of the fact that Crystal Reports puts a string with parameters
> separated by ';' at the end. And hand this over to the jdbc driver.
>
> jdbc:postgresql://server/dbname?user=dba&password=pw&
> DatabaseName=;user=;password
Aha, that explains what is going on. Crystal Reports seems pretty broken
if it's munging the URL itself, since the sub-protocol URL syntax is
driver-specific.
-O