You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/data-factory/connector-mariadb.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ author: jianleishen
6
6
ms.subservice: data-movement
7
7
ms.custom: synapse
8
8
ms.topic: conceptual
9
-
ms.date: 10/09/2024
9
+
ms.date: 10/24/2024
10
10
ms.author: jianleishen
11
11
---
12
12
@@ -82,6 +82,8 @@ If you use the recommended driver version, the following properties are supporte
82
82
| database | Your MariaDB database name. | Yes |
83
83
| username | Your user name. | Yes |
84
84
| 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 |
85
+
| sslMode | This option specifies whether the driver uses TLS encryption and verification when connecting to MariaDB. E.g., `SSLMode=<0/1/2/3/4>`.<br/>Options: DISABLED (0) / PREFERRED (1) / REQUIRED (2) / VERIFY_CA (3) / VERIFY_IDENTITY (4) **(Default)**| Yes |
86
+
| 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 |
85
87
| 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 |
86
88
87
89
**Example:**
@@ -100,7 +102,9 @@ If you use the recommended driver version, the following properties are supporte
100
102
"type": "SecureString",
101
103
"value": "<password>"
102
104
},
103
-
"driverVersion": "v2"
105
+
"driverVersion": "v2",
106
+
"sslMode": <sslmode>,
107
+
"useSystemTrustStore": <UseSystemTrustStore>
104
108
},
105
109
"connectVia": {
106
110
"referenceName": "<name of Integration Runtime>",
@@ -130,7 +134,9 @@ If you use the recommended driver version, the following properties are supporte
0 commit comments