天天看點

JDBC調用MySQL的調用過程CallableStatement

調用過程可以當作函數了解,具體參考本人博文

MySQL的test資料庫中已經建立好存儲過程p2(n),實作篩選school表id>n的資訊

CallableStatement callStatement=con.prepareCall("{call p2(?)}");  調用test資料庫的調用過程p2

callStatement.setString(1,"2");    指派,篩選school表id>2的資訊

ResultSet rs=callStatement.executeQuery();  結果展示

JDBC調用MySQL的調用過程CallableStatement