1 22 package org.jboss.test.jca.interfaces; 23 24 import java.rmi.RemoteException ; 25 import javax.ejb.EJBObject ; 26 27 32 public interface PreparedStatementRemote extends EJBObject  33 { 34 long hashEntityTable() throws RemoteException ; 35 String executeStoredProc(String name) throws RemoteException ; 36 void testPreparedStatementCache() throws RemoteException ; 37 void testPreparedStatementCacheDoubleClose() throws RemoteException ; 38 void testCallableStatementCache(String name) throws RemoteException ; 39 void testCallableStatementCacheDoubleClose(String name) throws RemoteException ; 40 } 41 | Popular Tags |