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 46e2cdb + 585a935 commit 251b562Copy full SHA for 251b562
connectorx/src/sources/mssql/mod.rs
@@ -59,7 +59,7 @@ pub fn mssql_config(url: &Url) -> Config {
59
}
60
config.port(url.port().unwrap_or(1433));
61
// remove the leading "/"
62
- config.database(&url.path()[1..]);
+ config.database(decode(&url.path()[1..])?.to_owned());
63
// Using SQL Server authentication.
64
#[allow(unused)]
65
let params: HashMap<String, String> = url.query_pairs().into_owned().collect();
0 commit comments