Skip to content

Commit 607b3cb

Browse files
authored
Update MySQL to use "mysql_tcp_port" (#197)
1 parent 26d7a9f commit 607b3cb

File tree

1 file changed

+3
-3
lines changed
  • spiceaidocs/docs/data-connectors

1 file changed

+3
-3
lines changed

spiceaidocs/docs/data-connectors/mysql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The MySQL data connector can be configured by providing the following `params`:
2121
- `mysql_connection_string`: The connection string to use to connect to the MySQL server. This can be used instead of providing individual connection parameters.
2222
- `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.
2323
- `mysql_host`: The hostname of the MySQL server.
24-
- `mysql_port`: The port of the MySQL server.
24+
- `mysql_tcp_port`: The port of the MySQL server.
2525
- `mysql_db`: The name of the database to connect to.
2626
- `mysql_user`: The username to connect with.
2727
- `mysql_pass_key`: The secret key containing the password to connect with.
@@ -40,7 +40,7 @@ datasets:
4040
name: my_dataset
4141
params:
4242
mysql_host: localhost
43-
mysql_port: 3306
43+
mysql_tcp_port: 3306
4444
mysql_db: my_database
4545
mysql_user: my_user
4646
mysql_pass_key: my_secret
@@ -52,7 +52,7 @@ datasets:
5252
name: my_dataset
5353
params:
5454
mysql_host: localhost
55-
mysql_port: '3306'
55+
mysql_tcp_port: 3306
5656
mysql_db: my_database
5757
mysql_user: my_user
5858
mysql_pass_key: my_secret

0 commit comments

Comments
 (0)