博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hibernate调用mysql存储过程
阅读量:4169 次
发布时间:2019-05-26

本文共 2492 字,大约阅读时间需要 8 分钟。

在mysql中创建两个存储过程,如下:

1、根据id查找某条数据:

1 CREATE PROCEDURE `findEmpById`(IN id INTEGER(11))2 begin3      select * from emp where empId=id;4 end;


2、根据id查找某个字段,并返回

1 CREATE PROCEDURE `getNameById`(in id integer(11),out eName varchar(50))2 begin3      select empName into eName from emp where empId=id;4 end;

  在存储过程的参数列表里面,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 args17      * @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 }

    调用存储过程的sql语句为:call 存储过程名(参数...),不过在java中调用存储过程一般都加{}。调用存储过程使用的是CallableStatement。

  (2)调用第二个存储过程

1 package com.test; 2  3 import java.sql.CallableStatement; 4 import java.sql.Connection; 5 import java.sql.SQLException; 6  7 import org.hibernate.Session; 8 import org.hibernate.SessionFactory; 9 import org.hibernate.cfg.Configuration;10 11 public class 调用存储过程1 {12 13     14     public static void main(String[] args) throws SQLException {15         Configuration config = new Configuration().configure();16         SessionFactory sessionFactory = config.buildSessionFactory();17         Session session = sessionFactory.openSession();18         Connection conn = session.connection();19         String sql = "{call getNameById(?,?)}";20         CallableStatement cs = conn.prepareCall(sql);  21         cs.setObject(1, 3); //设置输出参数22         cs.registerOutParameter(2, java.sql.Types.VARCHAR); //设置第二个参数为输出参数23         cs.execute(); //调用存储过程24         String name = cs.getString(2);//获取输出参数25         System.out.println(name);26     }27 28 }

  如果有输出参数,需要特别指出,如上面的代码22行。

转载地址:http://exkai.baihongyu.com/

你可能感兴趣的文章
Spring cloud Hystrix设计原则和特性
查看>>
Spring cloud初识Hystrix
查看>>
Spring cloud之Hystrix流程
查看>>
服务雪崩效应
查看>>
策略模式实例
查看>>
数据库索引之B+树
查看>>
Spring cache常用注解
查看>>
Spring boot整合出现Circular view path [error]: would dispatch back to the current handler URL问题
查看>>
linux系统管理-第四章Linux软件安装管理
查看>>
linux系统管理—第五章 Linux-bashshell
查看>>
第六章Linux系统管理-重定向与管道技术
查看>>
第七章Linux系统管理 -Linux进程管理
查看>>
第八章Linux系统管理 Linux服务管理
查看>>
第九章Linux系统管理-Linux Shell编程基础
查看>>
如何做好企业级IT系统运维
查看>>
金融IT系统高可用运维经验总结—人员、技术、流程
查看>>
IT运维管理-概述
查看>>
PostgreSQL数据库管理-第二章体系结构
查看>>
PostgreSQL数据库管理-第一章安装与配置
查看>>
PostgreSQL数据库管理 第三章实例管理与管理工具
查看>>