-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update SQLIController.cs #1
base: master
Are you sure you want to change the base?
Conversation
SQLiteCommand cmd2 = new SQLiteCommand(conn2); | ||
string whereClause = "where " + string.Join(" OR ", list); | ||
|
||
cmd2.CommandText = "select * from Employee " + whereClause; |
Check failure
Code scanning / CodeQL
SQL query built from user-controlled sources
SonarCloud Quality Gate failed. |
SQLiteCommand cmd2 = new SQLiteCommand(conn2); | ||
string whereClause = "where " + string.Join(" OR ", list); | ||
|
||
cmd2.CommandText = "select * from Employee " + whereClause; |
Check failure
Code scanning / SonarCloud
Database queries should not be vulnerable to injection attacks High
Quality Gate failedFailed conditions See analysis details on SonarCloud Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
No description provided.