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 参数对象提供有关存储过程或查询中使用的单个参数的信息。

参数对象在创建时添加到 Parameters 集合中。Parameters 集合与特定的 Command 对象相关联,该对象使用该集合将参数传递进出存储过程和查询。

参数可用于创建参数化命令。这些命令(在定义和存储后)使用参数在执行命令之前更改命令的某些细节。例如,SQL SELECT 语句可以使用参数来定义 WHERE 子句的条件。

参数有四种类型:输入参数、输出参数、输入/输出参数和返回值参数。


语法

objectname.property
objectname.method

属性

属性 描述
Attributes 设置或返回参数对象的属性。
Direction 设置或返回参数传递到过程或从过程传递的方式。
Name 设置或返回参数对象的名称。
NumericScale 设置或返回参数对象中数值的小数点右侧存储的位数。
Precision 设置或返回在参数中表示数值时允许的最大位数。
Size 设置或返回参数对象中值的以字节或字符为单位的最大大小。
Type 设置或返回参数对象的类型。
Value 设置或返回参数对象的值。

方法

方法 描述
AppendChunk 将长的二进制或字符数据追加到参数对象。
Delete 从 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.