Home >Database >Mysql Tutorial >在Hibernate中通过Oracle Function取得单据号码

在Hibernate中通过Oracle Function取得单据号码

WBOY
WBOYOriginal
2016-06-07 17:26:03872browse

今天在使用Hibernate开发项目时,遇到一个Oracle Function的问题.在项目开发中,所有单据的号码产生都是通过一个Function来产生.在

今天在使用Hibernate开发项目时,遇到一个Oracle Function的问题.

在项目开发中,所有单据的号码产生都是通过一个Function来产生.在这个Function中有一些DML语法,所以不能使用select fun_...() Into v_ref from dual的方法来取得返回结果.

经查询相关资料,Hibernate要求在执行Procedure和Function时都要返回一个游标,所以变通一下方法,我们增加另外一层Function处理.

新定义一个Function 如下:

Function fun_get_vou_web(....)

RETURN SYS_REFCURSOR

as

  v_vou varchar2(20);

  st_cursor SYS_REFCURSOR;
BEGIN
  v_vou := fun_get_vou(....);
 
  OPEN st_cursor FOR
    SELECT v_vou as vouno from dual ;
   
    RETURN st_cursor;

END;

然后在hbm.xml中配置:


 
  { ? = call fun_get_vou_web(.......) }
 

最后在java中查询name为getNewAppNo的执行结果即可.

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn