AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Administrar bases de datos / HFSQL / Gestión de registros / Funciones WLanguage
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
HLogInfo(Customer, "start printing " + Criterion)
HLogStop(Customer)  // Stop the log
HReadFirst(Customer, Criterion)
WHILE HFound() = True
// Process
 HReadNext(Customer)
END
 
// Restart log
HLogRestart(Customer)
// Write to log
HLogInfo(Customer, "end of print of " + Criterion)
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: wd290hf.dll
Versión mínima requerida
  • Versión 9
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 06/07/2023

Señalar un error o enviar una sugerencia | Ayuda local