Fixed Typos

This commit is contained in:
Tobias-Melzer
2018-12-18 13:49:18 +01:00
committed by Nanne Baars
parent 84f67b5a7e
commit 7daaac9a3f
8 changed files with 23 additions and 23 deletions

View File

@ -1,6 +1,6 @@
== Try It! String SQL Injection
The query in the code builds a dynamic query as seen in the previous example. The query in the code builds a dynamic query by concatenating strings making it susceptible to String SQL injection:
The query in the code builds a dynamic query as seen in the previous example. The query is build by concatenating strings making it susceptible to String SQL injection:
------------------------------------------------------------
"select * from users where LOGIN_COUNT > 0 and FIRST_NAME = " + userName + "'";