您的位置:首页 > 数据库 > MySQL

mysql 存储过程调用 mybatis/hibernate

2017-12-03 11:38 399 查看
创建mysql存储过程:

1 CREATE PROCEDURE `findEmpById`(IN id INTEGER(11),OUT count INT)
2 begin
3      select COUNT(*) INTO count from emp where empId=id;
4 end;


//in   输入

//out 输出

//into 昵称

hibernate调用方式


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.buildSessionFactory();
22         Session session = factory.openSession();
23         Connection con = session.connection();
24         String sql = "{call findEmpById(?)}";
25         CallableStatement cs = con.prepareCall(sql);
26         cs.setObject(1, 2);
27         ResultSet rs = cs.executeQuery();
28         while(rs.next()){
29             int id = rs.getInt("empId");
30             String name = rs.getString("empName");
31             System.out.println(id+"\t"+name);
32         }
33     }
34
35 }

 


Mybatis调用MySQL存储过程

<mapper>

<select

id="count"

parameterType="emp"

useCache="false"
statementType="CALLABLE">

<![CDATA[

call

findEmpById(

#{deviceCount,mode=OUT,jdbcType=INTEGER});

]]>

</select>

</mapper>

相关命令:

call findEmpById()


drop procedure findEmpById//
b183
show procedure status
show create procedure findEmpById
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: