Why couldn't I subclass PreparedStatement, then override
PreparedStatement.prepareStatement? When I proxy it, I get about 70 of
these:
The type PreparedStatementProxy must implement the inherited abstract
method Statement.getMaxRows()
Randall
Dave Cramer wrote:
> You don't want to do that you want proxy PreparedStatement, then
> override PreparedStatement.prepareStatement
>
> He is checking the return type of every method to see what is returning
> a prepared statement
>
> Dave