| Bug #91821 | KEYNOTFOUNDEXCEPTION RAISED WHEN USING "INTEGRATED SECURITY" OPTION | ||
|---|---|---|---|
| Submitted: | 27 Jul 2018 17:01 | Modified: | 3 Jun 23:57 |
| Reporter: | Daniel Valdez | Email Updates: | |
| Status: | Can't repeat | Impact on me: | |
| Category: | Connector / NET | Severity: | S3 (Non-critical) |
| Version: | 6.10.7 | OS: | Any |
| Assigned to: | Assigned Account | CPU Architecture: | Any |
[3 Jun 23:57]
Omar Chavez
Posted by developer: Could not reproduce with Connector/NET 9.3.0

Description: When trying to recover ConnectionString where the "Integrated Security" option was used, a KeyNotFoundException is raised. How to repeat: var conn = new MySqlConnection(); conn.ConnectionString = "server=localhost;User=root;Pooling=true;integrated security=true;"; conn.Open(); System.Console.WriteLine(conn.ConnectionString);