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
I had trouble passing server and database attributes on the command line. This line:
using (var con = new System.Data.SqlClient.SqlConnection(conn.DatabaseConnection))
in Application.cs was throwing an exception:
Unhandled Exception: System.ArgumentException: Keyword not supported: '<my_database_name>;integrated security'.
Different versions of the connection string had the same effect. A quick bit of Googling suggested the wrong provider was being set explicitly by the SqlConnection constructor, or something like that. Hard-coding the Program.cs worked around the issue.
The text was updated successfully, but these errors were encountered:
I had trouble passing server and database attributes on the command line. This line:
using (var con = new System.Data.SqlClient.SqlConnection(conn.DatabaseConnection))
in Application.cs was throwing an exception:
Unhandled Exception: System.ArgumentException: Keyword not supported: '<my_database_name>;integrated security'.
Different versions of the connection string had the same effect. A quick bit of Googling suggested the wrong provider was being set explicitly by the SqlConnection constructor, or something like that. Hard-coding the Program.cs worked around the issue.
The text was updated successfully, but these errors were encountered: