Forum Discussion

bench's avatar
bench
New Contributor
6 years ago
Solved

issue while using SQL Functions in Ready API SoapUI JDBC request

Hi, Do you know if its possible to use an existing SQL functions that already created in the oracle DB on JDBC request? in my case im trying to create a validation test step that calling SQL func...
  • Lucian's avatar
    Lucian
    6 years ago

    Kind of out of ideas except for the fact that you need to not end the query with a semicolon. So instead of

    select EF_CHECK_EVENT_ID(Event_ID) from dual;

    you could try

    select EF_CHECK_EVENT_ID(Event_ID) from dual

    Sorry pal.