How would you do a like query? This is currently what I have, but it doesn't work, I get an error.

Error Message:
Public member 'Read' on type 'Integer' not found.

vb Code:
  1. Dim connection As New OleDbConnection(dbQueryString)
  2. Dim command As New OleDbCommand("select * from info where `@sType` like @search order by `Title`", connection)
  3.  
  4. command.Parameters.AddWithValue("@sType", searchFilter.Text)
  5. command.Parameters.AddWithValue("@search", searchBox.Text & "%")
  6. connection.Open()
  7. Dim dr = command.ExecuteNonQuery()
  8. While dr.Read()
  9.        ' Some code
  10. End While