首页 > 数据库技术 > 详细

hibernate调用oracle存储过程||函数

时间:2015-03-18 20:13:40      阅读:567      评论:0      收藏:0      [点我收藏+]

pakeage dao.Impl;

//调用函数FUN_GET();

public String get(String Id,String Name){

return getSession().createSQLQuery("select FUN_GET(?,?) from dual")
.setParameter(0, Id).setParameter(1, Name).uniqueResult()
.toString();

}

//uniqueResult()  返回唯一值

 

//调用存储过程

CallableStatement call = connection.prepareCall("{call ?:=FUN_GETSTUNO(?,?)}");
call.registerOutParameter(1, Types.VARCHAR);
call.setString(2, Id);
call.setString(3, inDate);
call.executeQuery();

hibernate调用oracle存储过程||函数

原文:http://www.cnblogs.com/-lpf/p/4347821.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!