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 命令对象用于对数据库执行单个查询。查询可以执行创建、添加、检索、删除或更新记录等操作。

如果查询用于检索数据,则数据将作为记录集对象返回。这意味着检索到的数据可以通过记录集对象的属性、集合、方法和事件进行操作。

命令对象的主要功能是能够使用带参数的存储查询和过程。


ProgID

set objCommand=Server.CreateObject("ADODB.command")

属性

属性 描述
ActiveConnection 如果连接已关闭,则设置或返回连接的定义;如果连接已打开,则返回当前连接对象。
CommandText 设置或返回提供者命令
CommandTimeout 设置或返回尝试执行命令时等待的秒数
CommandType 设置或返回命令对象的类型
Name 设置或返回命令对象的名称
Prepared 设置或返回一个布尔值,如果设置为 True,则表示命令应在第一次执行之前保存查询的准备版本。
State 返回一个值,描述命令对象是打开、关闭、连接、执行还是正在检索数据

方法

方法 描述
Cancel 取消方法的执行
CreateParameter 创建新的参数对象
Execute 执行 CommandText 属性中的查询、SQL 语句或过程

集合

集合 描述
Parameters 包含命令对象的所有参数对象
属性 包含命令对象的所有属性对象

×

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.