SQL Injection attack prevention: where do I start

The first and best line of defense is to not use dynamic SQL.

Always use parameterized queries.

Take a look at the OWASP page about SQL Injection.

Leave a Comment