我创建了一个postgres函数,它返回一组ref游标。当我从java调用存储过程时,JDBC语句构建是
select * from ga_rpt_movement('CODE','2018-5-10','2018-5-10','2018-5-10','C','STAT1','2018-5-10','2018-5-10','12344','A','T','34',25,50,'M','1','firstname',0,10) as result
当我在postgres终端上运行相同的查询时,它给了我四个coursors。 现在我无法理解如何在java中获取此游标数据。 任何建议,想法都欢迎和赞赏。
在postgres终端上运行此查询时的结果集如下所示:
p_cr_personstatus
p_cr_identification
p_cr_phone
p_cr_count
(4行)
我正在尝试使用spring JPA来实现它。