/* -- ' Copyright by Erica Andrews aka CyLiKoN JeZuZ aka Li'L CJ, ' Febuary 2000. No one is permitted to implement this JavaBean ' or any portion of it on their site without the express written consent ' of the author (cylikon@hotmail.com - ./IcedPinky/). ' All rights reserved. ' This is the interface for an RMI application I created to query ' my MySQL database and list all available rows in the db. ' This client then processes the Vector. ' This class was hand-coded in Java by Erica Andrews on Feb. 1, 2000 ' The implementation uses the ' gweMySQLJDBC 0.9.2 driver and MySQL 3.22.9 for database connectivity. -- */ /* Feb 1, 1999 */ import java.rmi.*; import java.sql.*; import java.util.Vector; public interface RMIMySQL extends Remote { Vector RMIResultSet() throws RemoteException,ClassNotFoundException,SQLException; void VectorCleanUp() throws RemoteException; }