On Mon, 13 Feb 2006, Markus Schaber wrote:
> TNO wrote:
>> My Eclipse classpath show me 8.1 driver...
>
> System.err.println(org.postgresql.Driver.getVersion());
or better yet,
System.err.println(org.postgresql.util.PSQLDriverVersion.main());
This will print out where it has found the driver as well as what version
it has found.
Kris Jurka