Gets or sets a value specifying how data is fetched from the database to the table view.

Namespace:  C1.Data.SchemaObjects
Assembly:  C1.Data.2 (in C1.Data.2.dll)

Syntax

C#
[XmlAttributeAttribute]
public virtual DataAccessModeEnum DataAccessMode { get; set; }
Visual Basic (Declaration)
<XmlAttributeAttribute> _
Public Overridable Property DataAccessMode As DataAccessModeEnum
	Get
	Set

Remarks

The default value is Static. The other three possible values specify a virtual fetch mode, where data is fetched in chunks (segments) allowing to work with large datasets.

See Also