Commit 0c408469 authored by Andreas Fischer's avatar Andreas Fischer

Remove double reference to 'SQL query'.

parent 4c7ad891
...@@ -49,7 +49,7 @@ The query method is the most simple one for fetching data, but it also has ...@@ -49,7 +49,7 @@ The query method is the most simple one for fetching data, but it also has
several drawbacks: several drawbacks:
- There is no way to add dynamic parameters to the SQL query without modifying - There is no way to add dynamic parameters to the SQL query without modifying
the SQL query (``$sql``) itself. This can easily lead to a category of security ``$sql`` itself. This can easily lead to a category of security
holes called **SQL injection**, where a third party can modify the SQL executed holes called **SQL injection**, where a third party can modify the SQL executed
and even execute their own queries through clever exploiting of the security hole. and even execute their own queries through clever exploiting of the security hole.
- **Quoting** dynamic parameters for an SQL query is tedious work and requires lots - **Quoting** dynamic parameters for an SQL query is tedious work and requires lots
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment