Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

ADO Seek 方法


❮ 记录集对象完整参考

Seek 方法搜索记录集的索引,以查找与 keyvalues 参数中指定的数值匹配的记录。如果找到匹配项,则指针将指向由 seekoption 参数指定的记录。如果没有找到匹配项,则记录指针将被放置在记录集的末尾。

注意:要使用此方法,提供程序必须支持此方法和在记录集上使用索引(Index 属性)。使用 Supports 方法确定提供程序是否支持搜索和索引。

注意:在执行此方法之前,将 Index 属性设置为所需的索引。

注意:此方法只能与服务器端游标一起使用(当 CursorLocation 属性值为 adUseClient 时不支持)。

注意:当记录集对象以 adCmdTableDirect 的 CommandTypeEnum 值打开时,才能使用此方法。

语法

recordsetobj.Seek keyvalues,seekoption

参数 描述
keyvalues 必需。要与每个列中的值进行比较的值数组 
seekoption 必需。指定搜索类型的 SeekEnum

SeekEnum 值

常量 描述
adSeekFirstEQ 1 搜索与 keyvalues 相等的第一个键
adSeekLastEQ 2 搜索与 keyvalues 相等的最后一个键
adSeekAfterEQ 4 搜索与 keyvalues 相等的键,或正好在该匹配项出现的位置之后
adSeekAfter 8 搜索正好在与 keyvalues 匹配的位置之后出现的键
adSeekBeforeEQ 16 搜索与 keyvalues 相等的键,或正好在该匹配项出现的位置之前
adSeekBefore 32 搜索正好在与 keyvalues 匹配的位置之前出现的键

❮ 记录集对象完整参考
×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.