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 记录 对象


记录对象 (ADO 2.5 版)

ADO 记录对象用于保存记录集中的行、目录或文件系统中的文件。

在 2.5 版之前的 ADO 中,只能访问结构化数据库。在结构化数据库中,每个表在每行中都有完全相同的列数,并且每列都由相同的数据类型组成。

记录对象允许访问数据集中列数和/或数据类型可能在各行之间不同的数据。


语法

objectname.property
objectname.method

属性

属性 描述
ActiveConnection 设置或返回记录对象所属的连接对象。
Mode 设置或返回修改记录对象中数据的权限。
ParentURL 返回父记录的绝对 URL。
RecordType 返回记录对象的类型。
Source 设置或返回记录对象的 Open 方法的 src 参数。
State 返回记录对象的状态。

方法

方法 描述
Cancel 取消 CopyRecord、DeleteRecord、MoveRecord 或 Open 调用的执行。
Close 关闭记录对象。
CopyRecord 将文件或目录复制到另一个位置。
DeleteRecord 删除文件或目录。
GetChildren 返回一个记录集对象,其中每行代表目录中的文件。
MoveRecord 将文件或目录移动到另一个位置。
Open 打开现有的记录对象或创建新的文件或目录。


集合

集合 描述
属性 提供程序特定属性的集合。
Fields 包含记录对象中的所有 Field 对象。

Fields 集合的属性

属性 描述
Count 返回字段集合中项目的数量。从零开始。

示例

countfields=rec.Fields.Count

Item(named_item/number) 返回字段集合中的指定项目。

示例

itemfields=rec.Fields.Item(1)
或者
itemfields = rec.Fields.Item("Name")


×

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.