MySQL
Steps and required credentials to connect MySQL to Squadbase
Required Information
| Field | Description |
|---|---|
| MySQL Connection URL | The URL for connecting to MySQL (e.g., mysql://user:password@host:3306/database). |
How to Obtain
MySQL Connection URL
The connection URL follows this format:
mysql://[username]:[password]@[host]:[port]/[database]| Part | Description |
|---|---|
username | The MySQL username |
password | The password for the user |
host | The hostname or IP address of the MySQL server |
port | The MySQL port number (default: 3306) |
database | The name of the database to connect to |
Example
mysql://myuser:mypassword@db.example.com:3306/mydb