devxlogo

Using Seek Method

Using Seek Method

Question:
I am currently migrating my VB/Access application to Microsoft SQL Server. However, the “SEEK” function in my old program does not work any more and I can not find any function to replace that.

Answer:
Somewhere in your code you used one of the Find methods when you were looking through your database. If you are using ODBC to connect to SQL Server, Find methods are not allowed on recordsets created from ODBC databases. The workaround is just to Move through a snapshot/recordset and compare your search criteria against each record. Here is an example:

   Dim ssData as Snapshot   Set ssData = DB.CreateSnapshot(“table_name”)   Do While Not ssData.EOF       If ssData(“FieldName”) = “criteria” Then         MsgBox “Found record in recordset”         Exit Do      End If      ssData.MoveNext   Loop
The other, probably much faster, way to perform the same action is to query the database with a SQL statement, such as “SELECT * FROM table WHERE field=criteria”

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist