Can I use Oracle Pipelined Function like a select in QueryDSL?

148 views Asked by At

For a specific reason of a requirement, instead of using a VIEW, I use an Oracle pipelined function to get data in a table.

It works perfectly using Native Query:

"select * from (table (PAC_FOO_PIPELINED.FUNCTION_BAR(:fooDate, :barDate)))"

The problem is that I need to use QueryDSL. If I use native query, it would be necessary to rewrite a lot of code that is now bound to abstract methods that were implemented using QueryDSL.

Can anyone tell me if it is possible to perform this select through QueryDSL?

0

There are 0 answers