// JDBC RMI Interface for database call import java.rmi.*; import java.sql.*; public interface JR extends java.rmi.Remote { public int openDatabase() throws RemoteException, SQLException, ClassNotFoundException; public void performSearch(int id, String searchString) throws RemoteException, SQLException; public String getNextRow(int id) throws RemoteException, SQLException; public void closeDatabase(int id) throws RemoteException, SQLException; }