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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

ORDS POST. alias column on out resultset param with camelCase

rugal7Jan 29 2021 — edited Jan 29 2021

Hi.
I just need to retrieve in json body response data from a ref cursor with the name of tags camel case. For example:
Cursor:
Select 1 as "numClient", 'test' as "clientName" from dual;
I need:
{"numClient" : 1, "clientName": "test" }
But the alias in ords have been set in lowercase:
{"numclient" : 1, "clientname": "test" }
Is it posible to use camelCase alias columns for a param out resultset?

This post has been answered by thatJeffSmith-Oracle on Feb 1 2021
Jump to Answer

Comments

Processing

Post Details

Added on Jan 29 2021
3 comments
572 views