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
If there are double quotes inside passwd, the connection will fail.
The reason is that in Program.cs, the database information is passed in using a string, and special characters may interfere with the syntax of the connection string.
You can use the SqlConnectionStringBuilder class to construct the connection string
The text was updated successfully, but these errors were encountered:
If there are double quotes inside passwd, the connection will fail.
The reason is that in Program.cs, the database information is passed in using a string, and special characters may interfere with the syntax of the connection string.
You can use the SqlConnectionStringBuilder class to construct the connection string
The text was updated successfully, but these errors were encountered: