|
|
|
|
|
by P5fRxh5kUvp2th
1338 days ago
|
|
Do you understand what SQL Injection is? Fundamentally it's mixing data and executable code such that the DBMS cannot properly distinguish between the two and can inadvertently treat data as executable code. Parameterize queries very explicitly tells the DBMS "this is executable code, and this over here is data". Nothing anyone puts in the data will ever be mistake as executable code by the DBMS. THIS IS SAFE. |
|