{
log.info("+++ testCallableStatementCache");
InitialContext ctx = new InitialContext();
PreparedStatementHome home = (PreparedStatementHome) ctx.lookup("PreparedStatementBean");
PreparedStatementRemote bean = home.create("key2", "name2");
bean.testCallableStatementCache("callIdentitySQL");
bean.remove();
}
public void testCallableStatementCacheDoubleClose() throws Exception
{