|
|
|
|
|
RepeatableReadSupported (Property) In french: RepeatableReadSupporté
Available only with this kind of connection
The RepeatableReadSupported property is used to: - Know whether the data file (defined in the data model editor or programmatically) can be used in HFSQL Client/Server in a transaction with a "REPEATABLE READ" isolation mode.
- Allow the use of a transaction with a "REPEATABLE READ" isolation mode for a data file (when describing the data file programmatically only).
Warning: if this option is enabled, the data file is incompatible with versions 18 and earlier. This property corresponds to the "Allow REPEATABLE READ transactions" option, available in the "Options" tab of the data file description window in the analysis.
IF Customer.RepeatableReadSupported = False THEN Info("Unable to use the Repeatable Read mode")
Syntax
Whether the data file can be used in "REPEATABLE READ" mode Hide the details
<Result> = <Data file>.RepeatableReadSupported
<Result>: Boolean - True if the data file can be used in "REPEATABLE READ" mode,
- False otherwise.
<Data file>: Name of data file Name of the data file used. This name is defined in the data model editor or with the File Description type.
Define whether the data file can be used in "REPEATABLE READ" mode. Hide the details
<Data file>.RepeatableReadSupported = <"REPEATABLE READ" Mode>
<Data file>: Name of data file Name of the data file used. This name is defined with the File Description type. <"REPEATABLE READ" Mode>: Boolean - True if the data file can be used in "REPEATABLE READ" mode,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|