import java.sql.*; import java.util.*; public class Rs_sp extends RClass { //Rs_sp Rs_sp(Connection conn,String firsttable,String secondtable) { super(conn,firsttable,secondtable); } //========================== Vector getMembers(int _id_) throws SQLException { String _squry_="select id from " + secondtable + " where debs_id=" + _id_; Vector Result=getVector(_squry_); return Result; } //==================== Vector GetOwner(int _id_) throws SQLException { String _squry_="select debs_id from " + secondtable + " where id=" + _id_; Vector Result=getVector(_squry_); return Result; } //==================== } // Class end