ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL 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 <Source>.LogStop.
Example
Customer.LogInfo("start printing " + Criterion)
Customer.LogStop()  // Stop log
Customer.ReadFirst(Criterion)
WHILE Customer.Found()
// Process
Customer.ReadNext()
END
Customer.LogRestart() // Restart log
Customer.LogInfo("end of print of" + Criterion)  // Write
Syntax
<Result> = <Source>.LogRestart()
<Result>: Boolean
  • True if the operation was performed,
  • False if a problem occurs. HError is used to identify the error.
<Source>: Type corresponding to the specified source
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 <Source>.LogStop was used.
  • No information is saved in the log between <Source>.LogStop and <Source>.LogRestart.
  • <Source>.LogRestart is equivalent to <Source>.SetLog with the True parameter.
Component: wd290hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/06/2023

Send a report | Local help