SQL

Databases integration · 3 node(s).

00Overview

Every field below is exactly what you see in the Flomation editor. Fields marked ● live picker let you choose from a list pulled live from your account — no IDs to look up.

01Connecting SQL

Add your credentials as a Flomation environment secret, then pick them in each node. The connection fields are:

i
Pick an Environment on your flow (Flow Settings → Environment) so the secret resolves. Secret fields never show the value — they reference ${secrets.your_secret}.

02Mysql

MySQL Query

sql/mysql · Action

Execute a query against a MySQL database

FieldTypeDetails
Database HoststringRequiredlocalhost
Database PortintegerRequired3306
UsernamestringRequired
PasswordstringRequired
Database NamestringRequired
SQL QuerytextRequiredSELECT * FROM ...
TLS Modestringchoices: Disabled, Preferred, Required, Skip Verify

Returns: tool_result, results, row_count

03Oracle

Oracle Query

sql/oracle · Action

Execute a query against an Oracle database

FieldTypeDetails
Database HoststringRequiredlocalhost
Database PortintegerRequired1521
UsernamestringRequired
PasswordstringRequired
Service NamestringRequiredORCL
SQL QuerytextRequiredSELECT * FROM ...

Returns: tool_result, results, row_count

04Postgresql

PostgreSQL Query

sql/postgresql · Action

Execute a query against a PostgreSQL database

FieldTypeDetails
Database HoststringRequiredlocalhost
Database PortintegerRequired5432
UsernamestringRequired
PasswordstringRequired
Database NamestringRequired
SQL QuerytextRequiredSELECT * FROM ...
SSL Modestringchoices: Disable, Allow, Prefer, Require, Verify CA, Verify Full

Returns: tool_result, results, row_count

05Notes & Limitations

Behaviours and constraints worth knowing before you build with these nodes.