oracle-apexcustom-urloracle-ords

How can I use ?,&,= symbols in Oracle ORDS 18.2 URI Template?


Can I use ?,&, = symbols in Oracle APEX ORDS 18.2 version services URLs? The system shows me.URI Template may contain only alphabetic, numeric, underscore, dash, period, and forward slash characters, or may contain a single trailing asterisk. I can I use custom URL type?

enter image description here


Solution

  • The direct answer is you can't use them to define a URI template. The query string does not need to be defined all params are auto converted to binds.

    For example: Calling /hr/employees/?ename=SMITH the uri template doesn't need the '?name='. That is auto added to being a bind. In the sql/plsql the code can just reference :ename

    Here's a screen shot of the example >>

    enter image description here