Skip to content

Commit dcfe69f

Browse files
committed
Update pw
1 parent 746c04f commit dcfe69f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

articles/data-factory/connector-mysql.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The following properties are supported for MySQL linked service:
8383
| port | The port number to connect to the MySQL server. |No|
8484
| database | Your MySQL database name. |Yes|
8585
| username | Your user name.|Yes|
86-
| password | The password for the user name. | Yes |
86+
| password | The password for the user name. Mark this field as SecureString to store it securely. Or, you can [reference a secret stored in Azure Key Vault](store-credentials-in-key-vault.md). | Yes |
8787
| sslMode | This option specifies whether the driver uses TLS encryption and verification when connecting to MySQL. E.g., `SSLMode=<0/1/2/3/4>`.<br/>Options: DISABLED (0) / PREFERRED (1) **(Default)** / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4) | Yes |
8888
| useSystemTrustStore | This option specifies whether to use a CA certificate from the system trust store, or from a specified PEM file. E.g. `UseSystemTrustStore=<0/1>`;<br/>Options: Enabled (1) / Disabled (0) **(Default)** | No |
8989
| connectVia | The [Integration Runtime](concepts-integration-runtime.md) to be used to connect to the data store. Learn more from [Prerequisites](#prerequisites) section. If not specified, it uses the default Azure Integration Runtime. |No |
@@ -100,6 +100,10 @@ The following properties are supported for MySQL linked service:
100100
"port": 3306,
101101
"database": "<database>",
102102
"username": "<username>",
103+
"password": {
104+
"type": "SecureString",
105+
"value": "<password>"
106+
}
103107
"sslmode": <sslmode>,
104108
"usesystemtruststore": <UseSystemTrustStore>,
105109
"driverVersion": "v2"
@@ -281,7 +285,7 @@ When copying data from MySQL, the following mappings are used from MySQL data ty
281285
| `int unsigned` |`Int64`|
282286
| `integer` |`Int32` |
283287
| `integer unsigned` |`Int64` |
284-
| `json` |`String` |
288+
| `JSON` |`String` |
285289
| `long varbinary` |`Byte[]` |
286290
| `long varchar` |`String` |
287291
| `longblob` |`Byte[]` |

0 commit comments

Comments
 (0)