Aditya
Aditya

Reputation: 1

Oracle Procedure to REST API

Not sure if Devs do this. But What if we want to transform an Oracle PL/SQL procedure into a REST API. What can be the right strategy if you plan to do so?

Note: I am talking about transforming existing packages and procs to REST APIs. No creating new.

Upvotes: 0

Views: 1864

Answers (1)

theoa
theoa

Reputation: 71

At my current job, we use 2 different methods:

  1. Use ORDS, Oracle REST Data Services.
  2. Build a REST API layer in Java or whatever, which accesses the Oracle database.

Upvotes: 2

Related Questions