ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / Managing databases / HFSQL / Managing log processes / WLanguage functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Restarts the logging process on the data file. This logging was stopped by HLogStop.
Example
HLogInfo("Client", "début impression de " + Critère)
HLogStop("Client") // Stopper le journal
HReadFirst("Client", Critère)
WHILE HFound()
	// Traitement
	HReadNext("Client")
END
HLogRestart("Client") // Redémarrer le journal
HLogInfo("Client", "fin impression de" + Critère) // Ecrire
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: wd300hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/28/2025

Send a report | Local help