Using ___________ can effectively prevent SQL injection by separating SQL code from user input.

  • Data Encryption
  • Dynamic SQL
  • Parameterized Statements
  • Stored Procedures
SQL injection attacks can be prevented by using parameterized statements. These statements ensure that user input is treated as data and not executable code, effectively separating SQL code from user input and preventing malicious injection.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *