what is meant by sql injection with example and one more
question how to catch the errors in sqlserver
Answer Posted / sudheer
sql injection attacks are used to steal information from a
database from which normally not be available and /or to
gain access to an organaization 's host computers through
the computer that is hosting the database.
EXAMPLE:
select email,pwd,login_id,fullname from members where
email='x'
Now somebody does not put 'x' as the input but
puts 'x ;drop table members;' so the actual sql wich will
execute is
select email,pwd,login_id,fullname from members where
email=x;drop table members;
Think once what happens to ur database.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is meant by Active-Passive and Active-Active clustering setup?
what is datawarehouse?
What is raid and what are different types of raid levels?
Explain about unique identifier data type in sql server?
Can sql servers link to other servers like oracle?
What is transaction server distributed transaction?
How efficient you are in oracle and SQL server?
What is the process of normalization?
What are data regions?
What is key attribute?
How do I create a stored procedure in dbml?
What is the impact on other user sessions when creating indexes?
What is an expensive query?
Why the trigger fires multiple times in single login?
Difference between group by clause and having clause in SQL?