QANode Logo

Oracle Node

The Oracle node allows you to execute queries and operations on an Oracle Database.


Overview

PropertyValue
Typeoracle-query
CategoryDatabase
Color🟢 Green (#22c55e)
Inputin
Outputout

Connection

Using Saved Credentials (Recommended)

Select a credential of type Oracle.

Manual Configuration

FieldTypeDescription
Connection StringstringFull URI (TNS or Easy Connect)
HoststringServer address
PortnumberPort (default: 1521)
Service NamestringOracle service name
UserstringUser
PasswordstringPassword

Connection String (Easy Connect):

host:1521/service_name

Query Modes

Supports the same presets as the other database nodes:

  • Custom SQL — Free SQL with parameters
  • SELECT — Visual query builder
  • EXISTS — Check existence
  • COUNT — Count records
  • ASSERT — Check value
  • INSERT — Insert records
  • UPDATE — Update records
  • DELETE — Remove records

Note: In Oracle, placeholders use :1, :2 (bind variables):

SELECT * FROM users WHERE email = :1 AND active = :2

Outputs

OutputTypeDescription
rowsarrayReturned records
rowCountnumberNumber of affected/returned records

Oracle Differences

  • Service Name instead of database name
  • Bind variables use :1, :2 instead of $1 or ?
  • Oracle SQL syntax (e.g., ROWNUM instead of LIMIT)
  • The visual query builder automatically generates compatible SQL