If I use SubSonic to create DAL for my web project do I need to worry about preventing SQL Injection Attacks?
|
|
|
|
|
|
|
This depends on how you construct your queries. It is totally possible to write unsafe queries with subsonic if you don't use parameters.
|
||
|
|
|
No, SubSonic uses parameters to pass data into the database, it takes care of this. |
||
|
|
|
|
The Short answer is no. If you use the Subsonic Generated classes or the Subsonic.Select class to generate your queries/update/insert statements then you do not need to worry in that SubSonic uses Parameters correctly. Paul did point out however that if you go out of your way to write unsafe SQL that SubSonic will allow you to. SubSonic isn't your mother it won't stop you it is more like your best friend, it will tell you not to but if you decide to do it that is your decision. |
||
|
|
|
|
Just to re-present the example of Paul (if you FK constraints )
|
||
|
|
