Data.Win.ADODB.TADOTable.ReadOnly

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Unit: Data.Win.ADODB
Parent: TADOTable

Delphi

property ReadOnly: Boolean read GetReadOnly write SetReadOnly stored False;

C++

__property bool ReadOnly = {read=GetReadOnly, write=SetReadOnly, stored=false, nodefault};

Description

Specifies whether the data retrieved is read-only.

Use the ReadOnly property to prevent users from updating, inserting, or deleting data through the TADOTable. By default, ReadOnly is False, meaning users can alter a table's data.

See Also