Hello...
Im having a problem with "like operator" on SQL database
Im using this code to search on database
Dim DV As New DataView(dbDataSet)
DV.RowFilter = String.Format("ID Like '%{0}%'", TextBox1.Text)
DataGridView1.DataSource = DV
and at textbox1 I type 2
in data grid view show all people who have number 2 at their ID
how to make it search EXACTLY the some id as the textbox ?