VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



This code finds all records similar to each other using sqlerver

by abdul rahman asim (1 Submission)
Category: Databases/Data Access/DAO/ADO
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Tue 3rd September 2002
Date Added: Mon 8th February 2021
Rating: (1 Votes)

This code finds all records similar to each other using sqlerver

Rate This code finds all records similar to each other using sqlerver



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

Download this snippet    Add to My Saved Code

This code finds all records similar to each other using sqlerver Comments

No comments have been posted about This code finds all records similar to each other using sqlerver. Why not be the first to post a comment about This code finds all records similar to each other using sqlerver.

Post your comment

Subject:
Message:
0/1000 characters