Database - Query
Steps
- Create a project
database
. - Then create a JavaScript service named
database-query.js
. -
Within the service code, enter the following content:
var query = require("db/v4/query"); var response = require("http/v4/response"); var sql = "SELECT * FROM DIRIGIBLE_EXTENSIONS WHERE EXTENSION_EXTENSIONPOINT_NAME = ?"; var resultset = query.execute(sql, ["ide-view"]); response.setContentType("application/json"); response.println(JSON.stringify(resultset, null, 2)); response.flush(); response.close();
For more information, see the API documentation.