how can i call an oracle function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how can i call an oracle function?

given a project_no, i need to call the function:

ops$sqltime.pa_new_job_no_fn

which will return the next job_no

thanks in advance.
 
...

how can i call an oracle function?

Did you try the answer I gave you the previous time you posted this
question?
given a project_no, i need to call the function:

ops$sqltime.pa_new_job_no_fn

which will return the next job_no


In short, Oracle functions are called in the same way you call Oracle stored
procedures, but use named parameters, where the returning result is named
"RETURN_VALUE".

// Bjorn A
 
Back
Top