Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. vutil is installed.
  2. Oracle connection is configured in the config.json file in vutil directory.
  3. NodeJS `oracledb` driver is installed in the vutil directory. To install the driver, execute the following commands:

    Code Block
    $ cd <PATH_TO_VUTIL_DIRECTORY>
    $ npm install oracledb

Now, follow the below process to execute query on oracledb via REST API.

First create a test case which will fire a HTTP request on vutil server to validate the database state:

...