SQL injection attacks

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to get more information on securing my windows apps from SQL
injection attacks. There is so much stuff on web apps, but I can't find info
on win apps.
Can you help me
 
freddy said:
I would like to get more information on securing my windows apps from SQL
injection attacks. There is so much stuff on web apps, but I can't find info
on win apps.

The same kind of things apply. The main thing to do is never use values
from the user directly in SQL statements - *always* use SQL parameters
instead.
 
Back
Top