I'm using ORDS to create a handler, and using PL/SQL to execute a script. The request should have in URL search params id
.
When the id
is supplied, everything works fine. But if the id
is not supplied, I'd like to display a suitable error message.
Using IF :id = null
or IF :id = ''
doesn't seem to work. How should I do this properly?
Thanks!