QANode Logo

MariaDB Node

The MariaDB node allows you to execute queries and operations on a MariaDB database. The interface and features are identical to the MySQL node.


Overview

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

Connection

FieldTypeDescription
CredentialstringCredential of type MariaDB
HoststringServer address
PortnumberPort (default: 3306)
DatabasestringDatabase name
UserstringUser
PasswordstringPassword
SSLbooleanUse SSL connection

Query Modes

Supports the same presets: Custom SQL, SELECT, EXISTS, COUNT, ASSERT, INSERT, UPDATE, DELETE.

In Custom SQL mode, write the query directly in the SQL field and use {{ }} expressions for dynamic values.

SELECT *
FROM users
WHERE email = '{{ variables.EMAIL_TESTE }}'
  AND active = 1;

For text and dates, wrap the expression in quotes. For numbers and flags, normally use the expression without quotes.

MariaDB is a fork of MySQL and uses compatible SQL syntax. For full details on each preset, refer to the PostgreSQL documentation.


Outputs

OutputTypeDescription
rowsarrayReturned records
rowCountnumberNumber of affected/returned records