We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d57428c + be13e0b commit 0374786Copy full SHA for 0374786
connectorx/src/sources/mssql/mod.rs
@@ -96,6 +96,7 @@ pub fn mssql_config(url: &Url) -> Config {
96
97
match params.get("encrypt") {
98
Some(v) if v.to_lowercase() == "true" => config.encryption(EncryptionLevel::Required),
99
+ Some(v) if v.to_lowercase() == "false" => config.encryption(EncryptionLevel::Off),
100
_ => config.encryption(EncryptionLevel::NotSupported),
101
};
102
0 commit comments