Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: cmhuntyPosted on 2008-03-18 at 08:43:41ID: 21152248
Hi
partnersou rce/produc ts/mscrm/ n ewsevents/ news/crm4v pcimagerc0 release.ht m?printpag e=false which should help you.
SQL parameters are a very good preventative measure for SQL Injection. "SQL Parameters" in Google produces this link: https://mbs.microsoft.com/
Stripping out apostrophes won't necessarily work. Consider the following example for a SQL command string:
"SELECT * FROM CreditCards WHERE CardID = " & cardID
Now setting cardID to "1 OR 1=1" will produce the string
SELECT * FROM CreditCards WHERE CardID = 1 OR 1=1
and all results will be returned.
In this example, SQL Parameters will prevent this attack.