如何测定JDBC的性能 - 编程入门网
er(
realConnection.prepareCall(sql), this, sql);
}
public CallableStatement prepareCall(String sql, int resultSetType,
int resultSetConcurrency) throws SQLException {
return new CallableStatementWrapper(
realConnection.prepareCall(sql, resultSetType,
resultSetConcurrency), this, sql);
}
public PreparedStatement prepareStatement(String sql)
throws SQLException {
return new PreparedStatementWrapper(
realConnection.prepareStatement(sql), this, sql);
}
public PreparedStatement prepareStatement(String sql, int resultSetType,
int resultSetConcurrency) throws SQLException {
return new PreparedStatementWrapper(
realConnection.prepareStatement(sql, resultSetType,
resultSetConcurrency), this, sql);
}
如何测定JDBC的性能(3)时间:2010-12-18如上所示,我们需要定义三种Statement封装类,另外,我们还需要为DatabaseMetaData定义一个封装类,该封装类必须是完备的,因为DatabaseMetaData能够返回用来创建DatabaseMetaData的Connection对象,因此我们需要确保Connection对象是经过封装过的,而不是我们没有封装过的Connection对象。
我选择了将PreparedStatementWrapper实现为StatementWrapper的一个子类,但这并不是必须的。我们可以将PreparedStatement作为Object的一个子类,实现所有的要求的方法,而不是继承Statement类的方法。
同样地,我选择了将CallableStatementWrapper实现为PreparedStatementWrapper的一个子类:
这一次,我们并没有写出全部的代码。这些Statement封装类中的一些方法不能被简单地托付。第一,是一个返回Connection对象的方法,我们希望返回ConnectionWrapper对象,当然了,这非常容易作到。下面是StatementWrapper中的方法:
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |