Data.Win.ADODB.TADOTable.ReadOnly

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ReadOnly: Boolean read GetReadOnly write SetReadOnly stored False;

C++

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

Properties

Type Visibility Source Unit Parent
property published
Data.Win.ADODB.pas
Data.Win.ADODB.hpp
Data.Win.ADODB TADOTable

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