Table of Contents

Enum TableSetFlags

Namespace
Tripous.Data
Assembly
Tripous.Data.dll

A set of flags that dictate the behavior of a TableSet object.

[Flags]
public enum TableSetFlags
Extension Methods

Fields

GenerateSql = 1

Indicates that TableSet should use its own methods to generate Sql statements for the table tree.

NoCascadeDeletes = 4

Indicates that deletes should happen top to bottom, so if any database foreign constraint exists, then let an exception to be thrown.

None = 0

None of the flags is set

PessimisticMode = 2

Indicates that pessimistic mode should be used. That is to flag a row in the database while it is selected and de-flag it when saved/deleted.