AdoRecordOpenOptionsEnum() Function

<< Click to Display Table of Contents >>

Navigation:  Enums >

AdoRecordOpenOptionsEnum() Function

Previous pageReturn to chapter overviewNext page

Purpose

 

All the values of the RecordOpenOptions Enum:

The type of action to be performed when SetPermissions is called.

 

Prototype

 

FUNCTION AdoRecordOpenOptionsEnum (  )  AS ARRAY

Return

ARRAY        Every row in this array has 2 values:

       The numeric value of the Enum value

       A text representation of this value

 

This array can be used to validate values, and to print a meaningful description of the values during debugging You can pass this array to the AdoEnum2Str() function to convert the value of an Enum to a string

 

Description

 

List of possible values

adDelayFetchFields 0x8000        Indicates to the provider that the fields associated with the Record need not be retrieved initially, but can be retrieved at the first attempt to access the field. The default behavior, indicated by the absence of this flag, is to retrieve all the Record object fields.        
adDelayFetchStream0x4000        Indicates to the provider that the default stream associated with the Record need not be retrieved initially. The default behavior, indicated by the absence of this flag, is to retrieve the default stream associated with the Record object.        
adOpenAsync 0x1000        Indicates that the Record object is opened in asynchronous mode.        
adOpenExecuteCommand 0x10000        Indicates that the Source string contains command text that should be executed. This value is equivalent to the adCmdText option on Recordset.Open.        
adOpenRecordUnspecified -1        Default. Indicates no options are specified.        
adOpenOutput 0x800000        Indicates that if the source points to a node that contains an executable script (such as an .ASP page), then the opened Record will contain the results of the executed script. This value is only valid with non-collection records.

 

 

See Also

Enums, AdoEnum2Str(), AdoStr2Enum()