This code finds all records similar to each other using sqlerver
This code finds all records similar to each other using sqlerver
Rate This code finds all records similar to each other using sqlerver
(1(1 Vote))
data.Openrs.Open "info", data, 3, 3
Do While Not rs.EOF
rs.Find "name like 'k*'"
If Not rs.EOF Then
MsgBox rs("name").Value
rs.MoveNext
End If
Loop
rs.Close strconn
This code finds all records similar to each other using sqlerver Comments
No comments yet — be the first to post one!
Post a Comment