w3pop.com :: 网络学院 :: ADO :: ADO Field
The ADO Field object contains information about a column in a Recordset object. There is one Field object for each column in the Recordset.
ADO Field对象包含了Recordset集的列信息。它是与记录集中的每一行相关的Field[字段]对象。
set objField=Server.CreateObject("ADODB.field")
|
| Property属性 | Description描述 |
|---|---|
| ActualSize | Returns the actual length of a field's value 返回一个字段值的真实长度 |
| Attributes | Sets or returns the attributes of a Field object 设置或返回一个字段对象的属性值 |
| DefinedSize | Returns the defined size of a field 返回拒绝的字段长度 |
| Name | Sets or returns the name of a Field object 设置或返回一个字段对象的名称 |
| NumericScale | Sets or returns the number of decimal places allowed for numeric values in a Field object 设置或返回一个字段数之中允许接受的小数位数 |
| OriginalValue | Returns the original value of a field 返回当前记录中某字段的原始字段值 |
| Precision | Sets or returns the maximum number of digits allowed when representing numeric values in a Field object 设置或返回数值型字段对象中浮点数值的最大有效位数 |
| Status | Returns the status of a Field object 返回一个字段对象的状态 |
| Type | Sets or returns the type of a Field object 设置或返回一个字段对象的类型 |
| UnderlyingValue | Returns the current value of a field 返回一个字段对象的当前值 |
| Value | Sets or returns the value of a Field object 设置或返回一个字段对象的值 |
| Method方法 | Description描述 |
|---|---|
| AppendChunk | Appends long binary or character data to a Field object 向字段对象中追加长二进制数据或字符数据 |
| GetChunk | Returns all or a part of the contents of a large text or binary data Field object 返回所有的/一部分的文本(内容量较大的文本)内容或二进制数据的字段对象 |
| Collection集合 | Description描述 |
|---|---|
| Properties | Contains all the Property objects for a Field object 包含了Field[字段]对象的所有Property[属性]对象 |
评论 (0)
All