Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions spiceaidocs/docs/data-connectors/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The MySQL data connector can be configured by providing the following `params`:
- `mysql_connection_string`: The connection string to use to connect to the MySQL server. This can be used instead of providing individual connection parameters.
- `mysql_connection_string_key`: The secret key containing the connection string to use to connect to the MySQL server. This can be used instead of providing individual connection parameters.
- `mysql_host`: The hostname of the MySQL server.
- `mysql_port`: The port of the MySQL server.
- `mysql_tcp_port`: The port of the MySQL server.
- `mysql_db`: The name of the database to connect to.
- `mysql_user`: The username to connect with.
- `mysql_pass_key`: The secret key containing the password to connect with.
Expand All @@ -40,7 +40,7 @@ datasets:
name: my_dataset
params:
mysql_host: localhost
mysql_port: 3306
mysql_tcp_port: 3306
mysql_db: my_database
mysql_user: my_user
mysql_pass_key: my_secret
Expand All @@ -52,7 +52,7 @@ datasets:
name: my_dataset
params:
mysql_host: localhost
mysql_port: '3306'
mysql_tcp_port: 3306
mysql_db: my_database
mysql_user: my_user
mysql_pass_key: my_secret
Expand Down