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
Stops the log process of a data file. The operations performed in the logged file are not saved anymore.
Example
Customer.LogInfo("start printing " + Criterion)
Customer.LogStop()  // Stop log
Customer.ReadFirst(Criterion)
WHILE Customer.Found() = True
// Process
 Customer.ReadNext()
END
 
// Restart log
Customer.LogRestart()
// Write to log
Customer.LogInfo("end of print of" + Criterion)
Syntax
<Result> = <Source>.LogStop()
<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 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 <Source>.LogRestart and make sure that the data file strictly has its initial status.
  • The log is stopped until <Source>.LogRestart is run.
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