今天爱分享给大家带来用 JDBC 如何调用存储过程?【面试题详解】,希望可以帮助到大家!
通过JDBC组件中的CallableStatement接口实现调用存储过程。
核心代码如下:
<pre>
Class.forName(“com.mysql.jdbc.Driver”);
Connection conn=
DriverManager.getConnection(“jdbc:mysql:///test”,”root”,”root”);
CallableStatement cstmt = cn.prepareCall(“{call
insert_Student(?,?,?)}”);
cstmt.registerOutParameter(3,Types.INTEGER);
cstmt.setString(1, “wangwu”);
cstmt.setInt(2, 25);
cstmt.execute();
</pre>