> Ciao,
> I've this class that implements the interface PreparedStatement
[quoted text clipped - 11 lines]
> modify SCTRDebuggableStatement to finally see it compile without
> errors...
If all you're trying to do is to reach a compilable state, simply have the
method throw an exception that says "Not implemented".
throw new UnsupportedOperationException ("Not implemented.");
You don't have to declare this kind of exception.
Cheers,
Matt Humphrey matth@ivizNOSPAM.com http://www.iviz.com/
vahan - 07 Jul 2006 05:44 GMT
I'm agree with Matt, you have to write in your subclass:
ParameterMetaData getParameterMetaData() throws SQLException {
throw new UnsupportedOperationException ("Not implemented.");
}
> > Ciao,
> > I've this class that implements the interface PreparedStatement
[quoted text clipped - 21 lines]
> Cheers,
> Matt Humphrey matth@ivizNOSPAM.com http://www.iviz.com/