Public ResultSet Mcallsql (String Strsql) {RESULTSET RS = NULL; Try {CallAbleStatement Call = Conn.PrepareCall (strsql); r = call.executeQuery ();} catch (Exception E) {
} Return RS;
Conn returns the corresponding RESULTSET for Connection.
Dbconnection aa = new dbconnection (); resultset rr = aa.mcallsql ("exec ss"); try {while (r.next ()) {system.out.println (r.getstring ("class"));}} Catch (Exception E) {}
Complete the corresponding call