Possible Duplicate:
Parameterized Queries with LIKE and IN conditions
I try in my VB.net application to search persons on characters put in a text box by a parameter in sql DB. Something like-
select * from employee where name like '@name%'
but it doesn't work!
Can somebody help me?