Skip to main content

MySQL Connector

MySQL Query and manage data in a MySQL Database

Connections

MySQL Connection

Authenticate requests to a MySQL server

Create a new MySQL connection and enter the host, port, and database for your MySQL server. The username and password are optional inputs that can be put directly into a MySQL connection.

InputCommentsDefault
HostThe publicly-accessible address of your MySQL server.my-server.example.com
PortThe port your database server is exposing.3306
DatabaseThe name of your database.
Username
Password

Actions

Query

Returns the results of a MySQL database query

InputCommentsDefault
QueryA query to be executed by the MySQL server. Substitute parameters with '?' marks.SELECT * FROM table WHERE name = ? AND age > ?
ParametersOptional parameters to insert into a query. Use this when you know how many parameters your query uses ahead of time. Use either parameters or reference parameters, not both.
Reference ParametersOptional parameters to insert into a query. Use this when you don't know how many parameters your query uses ahead of time. Reference parameters from a previous step that returns an array. Use either parameters or reference parameters, not both.
Connection