|
|
|
|
|
HLogRestart (Function) In french: HJournalRedémarre
Available only with these kinds of connection
Restarts the logging process on the data file. This logging was stopped by HLogStop. HLogInfo("Customer", "start printing " + Criterion) HLogStop("Customer") Â // Stop the log HReadFirst("Customer", Criterion) WHILE HFound() // Process HReadNext("Customer") END HLogRestart("Customer") // Restart the log HLogInfo("Customer", "done printing" + Criterion) Â // Write Syntax
<Result> = HLogRestart(<Data file>)
<Result>: Boolean - True if the operation was performed,
- False if a problem occurs. HError is used to identify the error.
<Data file>: Character string Name of logged data file whose logging process must be restarted. Remarks - When restarting the log, the data file must be in its initial status, i.e. its status before HLogStop was used.
- No information is saved in the log between HLogStop and HLogRestart.
- HLogRestart is equivalent to HSetLog with the True parameter.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|