ADO Example--Search for a data record via an ADO recordset

This example shows how to search for a data record matching a simple criterion (a specific serial number).

Dim cn As New ADODB.Connection

Dim rs As New ADODB.Recordset

'*** Define the connection string

Dim cnstr As String

cnstr = cnstr & "Provider = Scantron.Oledb;"

cnstr = cnstr & "Data File = c:\program files\pearson ncs\scantools plus\data files\802 sample.dat;"

cnstr = cnstr & "App File = c:\program files\pearson ncs\scantools plus\applications\z802 .sds .StxAppDef;"

cnstr = cnstr & "Mode=Read|Write;"

cn.Open cnstr

rs.Open "select * from master", cn, adOpenDynamic, adLockOptimistic

rs.Find "[Serial Number] = 8"

Debug.Print rs("Serial Number")

The example shown above selects all records from the data provider and then uses the Find method to select the desired records. The same end result could have been achieved simply by executing a select statement that included the find criteria in the where clause. Using a where clause causes less data to be transferred between the provider and the solution; but, if all records are already present in the solution, the Find method may be more efficient.

See also

ADO Programming Examples

Master Table Definition

 

 

See Help on Help for additional information on using this help file.

See Scantron Technical Support for additional information on technical support and training options.

See the ScanTools Suite System Requirements for further details on hardware and software requirements.

ScanTools is a suite of products; the specific information you want may appear in the help for a different module. If you don't find what you're looking for here, try one of the following:

 

Scantron Corporation

Customer Service (forms, products, and services):

1-800-SCANTRON (722-6876)

www.scantron.com

Technical Support:

1-800-445-3141

support@scantron.com

Copyright © 1998-2012 Scantron Corporation. All rights reserved. Use permitted only under license. www.scantron.com. No part of the Help or user guides may be reproduced in any form, or by any means, without express permission from Scantron Corporation.

LINKS TO THIRD PARTY SITES

This help system may contain links to third party websites ("Linked Sites"). The Linked Sites are not under the control of Scantron and Scantron is not responsible for the content of any Linked Site, including without limitation any link contained in a Linked Site or any changes or modifications to a Linked Site. Scantron is not responsible for web casting or any other form of transmission received from any Linked Site. Scantron provides Users with the ability to link the Assessment System to the Linked Sites as a convenience to you, and the inclusion of any link does not imply endorsement by Scantron of the Linked Site or any association with its operators.