ADO 属性对象


属性对象

ADO Property 对象表示由提供者定义的 ADO 对象的动态特征。

每个与 ADO 交互的提供者都有不同的与 ADO 交互的方式。因此,ADO 需要以某种方式存储有关提供者的信息。解决方案是提供者向 ADO 提供特定信息(动态属性)。 ADO 将每个提供程序属性存储在一个 Property 对象中,该对象又存储在 Properties 集合中。 Collection 被分配给 Command 对象、Connection 对象、Field 对象或 Recordset 对象。


程序ID

set objProperty=Server.CreateObject("ADODB.property")

特性

Property Description
Attributes Returns the attributes of a Property object
Name Sets or returns the name of a Property object
Type Returns the type of a Property object
Value Sets or returns the value of a Property object