Skip to content

MySQL

Specific parameters to establish MySQL/MariaDB connections.


General Information:

Type ID Module Category
10 database database

MySqlConnectionParams

Parameters:

No parameters.

Input Parameters:

Field Type Required Description Default value Examples
host str Host name or IP address of the database server ```` 200.00.25.547, devdb.com
port int Database server port 5432 5432
username str Username for authentication ```` user
password str Password for authentication ```` password
database str Name of the database to connect ```` mydb
use_ssl bool Whether to use SSL for the connection False False

Example:

{
  "host": "localhost",
  "port": 3306,
  "username": "root",
  "password": "password",
  "database": "mydb",
  "use_ssl": false
}

Notes:

MySQL supports SSL.