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
Checks whether the current record corresponds to the current filter or search.
HFound returns True if the current record exists and if one of the following conditions is met:
  • the data file browse is filtered and the current record corresponds to the filter conditions,
  • the data file browse was started by a search and the current record corresponds to the sought value,
  • the data file browse is neither filtered nor started by a search.
When an operation causes an exit from the filter or data file (i.e. when HOut returns True), HFound returns False.
Note The function HFound corresponds to the variable H.Trouve.
Ejemplo
HReadSeekFirst(Customer, Name, "Moore")
IF HFound() = True THEN
	Info("Record found")
ELSE
	Error("No record found")
END
Sintaxis
<Result> = HFound([<Data file>])
<Result>: Boolean
  • True if the current record corresponds to the filter or to the search,
  • False otherwise. HError returns more details about the problem.
<Data file>: Optional character string
Name of the data file, view or query used. If this name is not specified, HFound will use the last data file (view or query) used by the last HFSQL management function (function starting with "H").
Observaciones
Componente: wd300hf.dll
Versión mínima requerida
  • Versión 9
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