G
Guest
I write this on Borland Delphi:
command = 'select * from mytable where name = "' + Edit1.Text + '"';
Users can write SQL injection commands in Edit1.Text.
How to avoid this?
command = 'select * from mytable where name = "' + Edit1.Text + '"';
Users can write SQL injection commands in Edit1.Text.
How to avoid this?