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
Stops the log process of a data file. The operations performed in the logged file are not saved anymore.
Example
HLogInfo(Client, "début impression de " + Critère)
HLogStop(Client) // Stopper le journal
HReadFirst(Client, Critère)
WHILE HFound() = True
	// Traitement
	 HReadNext(Client)
END

// Redémarrer le journal
HLogRestart(Client) 
// Ecrire dans le journal
HLogInfo(Client, "fin impression de " + Critère)
Syntax
<Result> = HLogStop(<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 the logged data file whose log process must be stopped.
Remarks
  • The operations performed once this function has been used will not be logged and they will be lost if a problem occurs.
  • Don't forget to restart the log process via HLogRestart and make sure that the data file strictly has its initial status.
  • The log is stopped until HLogRestart is run.
Component: wd300hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help