ADO Parameter Object

Field object

The ADO Field object contains information about a column in the Recordset object. Each column in the Recordset corresponds to a Field object.

ProgID

Set objField = Server.CreateObject("ADODB.field")

Property

Property Description
ActualSize Returns the actual length of a field value.
Attributes Sets or returns the properties of the Field object.
DefinedSize Returns the size defined for the Field object
Name Set or return the name of the Field Object.
NumericScale Set or return the number of decimal places allowed in the value of the Field Object.
OriginalValue Return the original value of a field.
Precision Set or return the maximum number of digits allowed when representing the value of the Field Object numerically.
Status Return the status of the Field Object.
Type Set or return the type of the Field Object.
UnderlyingValue Return the current value of a field.
Value Set or return the value of the Field Object.

Method

Method Description
AppendChunk Append large binary or text data to the Field Object.
GetChunk Return all or part of the content of the large binary or text Field Object.

Collection

Collection Description
Properties All Property Objects containing a Field Object.