Skip to content

Commit bb5ee65

Browse files
committed
Update password
1 parent 6850f68 commit bb5ee65

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

articles/data-factory/connector-mariadb.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ The following properties are supported for MariaDB linked service:
7979
| port | The port number to connect to the MariaDB server. | No |
8080
| database | Your MariaDB database name. | Yes |
8181
| username | Your user name. | Yes |
82-
| password | The password for the user name. | Yes |
82+
| 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 |
8383
| 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 |
8484

8585
**Example:**
@@ -94,6 +94,10 @@ The following properties are supported for MariaDB linked service:
9494
"port": "<port>",
9595
"database": "<database>",
9696
"username": "<username>",
97+
"password": {
98+
"type": "SecureString",
99+
"value": "<password>"
100+
},
97101
"driverVersion": "v2"
98102
},
99103
"connectVia": {
@@ -116,7 +120,7 @@ The following properties are supported for MariaDB linked service:
116120
"port": "<port>",
117121
"database": "<database>",
118122
"username": "<username>",
119-
"pwd": {
123+
"password": {
120124
"type": "AzureKeyVaultSecret",
121125
"store": {
122126
"referenceName": "<Azure Key Vault linked service name>",
@@ -252,7 +256,7 @@ When copying data from MariaDB, the following mappings are used from MariaDB dat
252256
| `int unsigned` |`Int64`|
253257
| `integer` |`Int32` |
254258
| `integer unsigned` |`Int64` |
255-
| `json` |`String` |
259+
| `JSON` |`String` |
256260
| `long varbinary` |`Byte[]` |
257261
| `long varchar` |`String` |
258262
| `longblob` |`Byte[]` |

0 commit comments

Comments
 (0)