Skip to Main Content

ORDS, SODA & JSON in the Database

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

generate nested json with PAGINATION in ORDS

Pierre YottiApr 5 2018 — edited Apr 7 2018

Hi,

any ideas why generate nested json doest not support Pagination?

It was already so in old version. Now I use ords 17.4. Still the same issues.

I think nested json with Pagination work im Spring boot. Why not in ords?

I use ORDS 17.4

Oracle database 12c

How can i paginate that nested json https://apexea.oracle.com/pls/apex/paul/hr/empinfo/

That is the statement behind the Service

SELECT

    c.cust_first_name,

    c.cust_last_name,

    c.cust_city,

    CURSOR (

        SELECT

            o.order_total,

            CURSOR (

                SELECT

                    p.product_name,

                    i.quantity,

                    i.unit_price

                FROM

                    demo_order_items i,

                    demo_product_info p

                WHERE

                        o.order_id = i.order_id

                    AND

                        i.product_id = p.product_id

            ) product

        FROM

            demo_orders o

        WHERE

            c.customer_id = o.customer_id

    ) orders

FROM

    demo_customers c

This post has been answered by thatJeffSmith-Oracle on Apr 5 2018
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 4 2018
Added on Apr 5 2018
8 comments
1,160 views