Skip to main content

MySQL Connector

MySQL MySQL is a popular relational database system. This component allows you to query a MySQL database.

Connections

On-Premise Connection

Authenticate requests to a MySQL server.

Create a connection of type On-Premise Connection to authenticate with a MySQL server.

Configure the Connection

  • Host: The publicly-accessible address of the MySQL server (e.g., my-server.example.com)
  • Port: The port the database server is exposing (default: 3306)
  • Database: The name of the MySQL database to connect to
  • Username (optional): The username for authenticating with the MySQL server
  • Password (optional): The password for authenticating with the MySQL server
InputCommentsDefault
HostThe publicly-accessible address of the MySQL server.my-server.example.com
PortThe port the database server is exposing.3306
DatabaseThe name of the MySQL database to connect to.
UsernameThe username for authenticating with the MySQL server.
PasswordThe password for authenticating with the MySQL server.

Actions

Query Database

Executes a query against a MySQL database and returns the results.

InputCommentsDefault
ConnectionThe MySQL connection to use.
QueryThe SQL query to execute against the MySQL server. Use '?' placeholders for parameterized values.SELECT * FROM table WHERE name = ? AND age > ?
ParametersThe ordered list of values to bind to '?' placeholders in the query. Use this when the number of parameters is known at design time. Use either Parameters or Reference Parameters, not both.
Reference ParametersA JSON array of values to bind to '?' placeholders, referenced from a previous step. Use this when the number of parameters is determined at runtime. Use either Parameters or Reference Parameters, not both.