Oracle - Query
Oracle - Query
Runs a SQL statement on a Oracle database. It supports SELECT, INSERT, UPDATE, DELETE and other standard SQL statements. The results can be iterated with Oracle: For each result or read directly from the action returns.
Options
Connection
Reference to the Oracle: Connection action that will be used to run the query.
Query to be executed
SQL statement to run on the Oracle database, for example SELECT * FROM CLIENTES WHERE ATIVO = 1.
Returns
Javascript code
js
actions["action-id"].query // query that was executed (Text)
actions["action-id"].results // query results (List)
actions["action-id"].resultsCount // number of records returned (Number)
Field selection
- query — query that was executed (Text)
- results — query results (List)
- resultsCount — number of records returned (Number)
Rules and Conditions
- The Connection and Query fields are required.
resultsandresultsCountare relevant for SELECT statements.- For INSERT, UPDATE or DELETE statements,
resultsCountreturns0.