У меня есть метод ClassA, который следует
public class ClassA{
public void add(){
try {
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url = "jdbc:oracle:thin:@localhost:1521:XE";
conn = DriverManager.getConnection(url, "Hr", "Hr");
System.out.println("Connection Established");
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery(""); // in which class i pass this method i want to write the insert query in the inverted commas
}} }
catch (Exception e) {
System.err.println("connection error " + e);
}
Теперь у меня есть класс B
public class ClassB{
//how can i get the add() method of classA in such a way that i can write my query direct into the ResultSet rs = stmt.executeQuery("")
}
Я попробовал несколько вещей, но не смог сделать то, что я хочу сделать.