Fix sql injection line comments issue. (#925)

This commit is contained in:
NatasG
2021-01-19 17:47:04 +08:00
committed by GitHub
parent 2e581d6bdb
commit 00c4be63f0

View File

@ -5,7 +5,7 @@
/* */ are inline comments
-- , # are line comments
Example: SELECT * FROM users WHERE name = 'admin' --AND pass = 'pass'
Example: SELECT * FROM users WHERE name = 'admin' -- AND pass = 'pass'
----