在存储过程的参数列表里面,in修饰的参数代表输入参数,out修饰的代表输出参数。
使用hibernate调用上面两个存储过程:
(1)调用第一个存储过程
1 package com.test; 2
3 import java.sql.CallableStatement; 4 import java.sql.Connection; 5 import java.sql.ResultSet; 6 import java.sql.SQLException; 7
8 import org.hibernate.Session; 9 import org.hibernate.SessionFactory;
10 import org.hibernate.cfg.Configuration;
11
12
13 public class 调用存储过程 {
14
15 /**
16 * @param args
17 * @throws SQLException
18 */
19 public static void main(String[] args) throws SQLException {
20 Configuration cfg = new Configuration().configure();
21 SessionFactory factory = cfg.buildSessionFacto