Class PreparedStatementProxy

java.lang.Object
net.sourceforge.jtds.jdbcx.proxy.StatementProxy
net.sourceforge.jtds.jdbcx.proxy.PreparedStatementProxy
All Implemented Interfaces:
AutoCloseable, PreparedStatement, Statement, Wrapper
Direct Known Subclasses:
CallableStatementProxy

public class PreparedStatementProxy extends StatementProxy implements PreparedStatement
This class would be better implemented as a java.lang.reflect.Proxy. However, this feature was not added until 1.3 and reflection performance was not improved until 1.4. Since the driver still needs to be compatible with 1.2 and 1.3 this class is used to delegate the calls to a prepared statement with minimal overhead.
Version:
$Id: PreparedStatementProxy.java,v 1.3.4.3 2009-12-30 08:45:34 ickzon Exp $