Hibernate ProcedureCall带有输入参数列表

时间:2016-06-02 08:37:30

标签: java oracle hibernate

我有一个像这样调用的存储过程:

CREATE OR REPLACE TYPE numbers_tbl IS TABLE OF NUMBER;

declare
  vess_ids numbers_tbl := numbers_tbl(91,250,251,48,339,145,172,202,174);
  rez Number(19,0);
begin
  dev4.limits_get_comp_catch(vess_ids, rez);
  dbms_output.put_line(rez);
end;

我正在寻找一种使用hibernate从我的java应用程序中调用它的方法。

ProcedureCall call = getCurrentSession().createStoredProcedureCall("limits_get_comp_catch");

有点坚持如何将List<Long>传递给程序。有什么想法吗?

0 个答案:

没有答案