Hi
I am having problems getting apache DBCP to work with pg jdbc.
It is claiming it can't convert a Connection into a PGConnection.
the sentence throws the exception is something like this:
Connection con = ds.getConnection() \\ DBCP BasicDataSource
((PGConnection)con).getCopyAPI.copyIntoDB("COPY attr (val1) from
STDIN"), stream);
the error message is (the message is handcopied so I might make mistakes)
ClassCastException:
org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper can
not be cast to org.postgresql.PGConnection
Anybody got any ideas whats wrong? the getConnection() returns a
javax.sql.Connection object, so casting it to PGConnection should not be a
problem.
Using the driver
podtgresql-jdbc-8.2-505-copy-20070719.jdbc3.jar
which contains a pathc for COPY functionality
(http://kato.iki.fi/sw/db/postgresql/jdbc/copy/)