AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Administrar bases de datos / HFSQL / Funciones HFSQL
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
<Source>.CheckUnaltered (Function)
HFSQL ClassicHFSQL Client/ServerDisponible solo con estos tipos de conexión
Checks that one or all records in an unalterable data file have not been modified (e.g. with a hexadecimal editor).
Warning: A corrupted Record can be played back if the Record header is not corrupted.
Ejemplo
// Check all records found in MyCustomerFile
IF MyCustomerFile.CheckUnaltered() = True THEN
Trace("No record was modified")
ELSE
Trace("The file was altered")
END
Sintaxis
<Result> = <Source>.CheckUnaltered([<Record> [, <Progress Bar>]])
<Result>: Boolean
  • True if the record was not altered,
  • False otherwise. In this case, ErrorInfo returns the list of altered records.
<Source>: Type corresponding to the specified source
Name of the HFSQL data file to check.
<Record>: Optional integer or Integer constant
  • Number of the record to check.
  • Constant used to specify the record to check:
    hCurrentRecNumCheck the current record.
    hRecNumAll
    (Default value)
    Check all records.
<Progress Bar>: Optional control name or window name
  • Name of the window in which the progress bar will be displayed.
  • Name of the Progress Bar control.
Componente: wd300hf.dll
Versión mínima requerida
  • Versión 25
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

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