Skip to content

Commit

Permalink
Support MySQL additional connection properties (#31027)
Browse files Browse the repository at this point in the history
* Support MySQL additional connection properties

* Support MySQL additional connection properties
  • Loading branch information
tsaiggo authored Nov 7, 2024
1 parent d85dc63 commit cb96711
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1850,6 +1850,41 @@
"encryptedCredential": {
"type": "string",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string."
},
"allowZeroDateTime": {
"type": "object",
"x-ms-format": "dfe-bool",
"description": "This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean."
},
"connectionTimeout": {
"type": "object",
"x-ms-format": "dfe-int",
"description": "The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer."
},
"convertZeroDateTime": {
"type": "object",
"x-ms-format": "dfe-bool",
"description": "True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean."
},
"guidFormat": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID."
},
"sslCert": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string."
},
"sslKey": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string."
},
"treatTinyAsBoolean": {
"type": "object",
"x-ms-format": "dfe-bool",
"description": "When set to true, TINYINT(1) values are returned as booleans. Type: bool."
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1596,6 +1596,34 @@
"encryptedCredential": {
"type": "object",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string)."
},
"allowZeroDateTime": {
"type": "object",
"description": "This allows the special “zero” date value 0000-00-00 to be retrieved from the database. Type: boolean."
},
"connectionTimeout": {
"type": "object",
"description": "The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. Type: integer."
},
"convertZeroDateTime": {
"type": "object",
"description": "True to return DateTime.MinValue for date or datetime columns that have disallowed values. Type: boolean."
},
"guidFormat": {
"type": "object",
"description": "Determines which column type (if any) should be read as a GUID. Type: string. None: No column types are automatically read as a Guid; Char36: All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens, which matches UUID."
},
"sslCert": {
"type": "object",
"description": "The path to the client’s SSL certificate file in PEM format. SslKey must also be specified. Type: string."
},
"sslKey": {
"type": "object",
"description": "The path to the client’s SSL private key in PEM format. SslCert must also be specified. Type: string."
},
"treatTinyAsBoolean": {
"type": "object",
"description": "When set to true, TINYINT(1) values are returned as booleans. Type: bool."
}
}
},
Expand Down

0 comments on commit cb96711

Please sign in to comment.