我正在尝试在 Java 中调用 PL/SQL 存储过程。它在 SQL Developer 中工作。当我启动应用程序时,没有任何反应,也没有收到任何错误消息。数据库中没有任何变化。
这是代码:
try{
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection con=DriverManager.getConnection(
"jdbc:oracle:thin:@localhost:1521:orcl","student","student");
CallableStatement callProc = con.prepareCall("CALL compare_images(1,2)");
callProc.execute();
con.close();
}catch(Exception e) {
System.out.println(e);
}