I\'ve got a web application with an SQL injection as part of an INSERT statement. It looks like this:
INSERT INTO table1 VALUES (\'str1\', 1, \'INJECTION HER
As explained in this post, there are more bad things that can happen to your application than the classic table DROP:
Bottom line, you should never use string concatenation when building SQL statements. Use a dedicated API for that purpose.