Is the single act of using stored procedures (in place of dynamic SQL) the
only thing you have to do to prevent SQL injection attacks?

Thank you,

Eric

Re: Avoiding SQL Injections by William

William
Sat Mar 12 23:41:00 CST 2005

SQL injection attacks can also be caused by stored procedures that use
EXECUTE SQL commands.

--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
Microsoft MVP
www.betav.com/blog/billva
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________

<Eric> wrote in message news:%23El1JQ3JFHA.1528@TK2MSFTNGP09.phx.gbl...
> Is the single act of using stored procedures (in place of dynamic SQL) the
> only thing you have to do to prevent SQL injection attacks?
>
> Thank you,
>
> Eric
>



Re: Avoiding SQL Injections by Jim

Jim
Sun Mar 13 08:43:37 CST 2005

You can also use Dynamic SQL with parameters as described at
http://www.knowdotnet.com/articles/dynamicsqlparameters.html without using
stored procedures.

<Eric> wrote in message news:%23El1JQ3JFHA.1528@TK2MSFTNGP09.phx.gbl...
> Is the single act of using stored procedures (in place of dynamic SQL) the
> only thing you have to do to prevent SQL injection attacks?
>
> Thank you,
>
> Eric
>



Re: Avoiding SQL Injections by Eric>

Eric>
Sun Mar 13 11:09:16 CST 2005

Good points. Thank you, Jim and Bill.

Eric


<Eric> wrote in message news:%23El1JQ3JFHA.1528@TK2MSFTNGP09.phx.gbl...
> Is the single act of using stored procedures (in place of dynamic SQL) the
> only thing you have to do to prevent SQL injection attacks?
>
> Thank you,
>
> Eric
>