dhruv  singhal

dhruv singhal

  • NA
  • 1
  • 1.7k

Are the sql parameterised query completely secure ?

Jan 19 2013 8:39 PM
I have been coding on highly sensitive databases for sometime now , and has been using parameterised sql query like,

sqlcommand cmd = new sqlcommand("insert into register values(@name,@phone_no"),connection);
cmd.parameters.add('@name',name);
cmd.parameters.add('@phone_no',phone_no);

does these things could be trespassed , or the malicious instruments are completely nullified 


And how to secure data tampering ?

Answers (1)