ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / Managing log processes / WLanguage functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Restarts the logging process on the data file. This logging was stopped by HLogStop.
Example
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.
Component: wd290hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/03/2023

Send a report | Local help