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
HErrorPassword (Function)
ODBCNo disponible con este tipo de conexión
After the execution of a read or write function in a data file, allows you to find out whether an error caused by a wrong password occurred on this data file.
It is recommended to use HErrorPassword after the first function that handles an HFSQL data file.
This function can be used with the HFSQL data files, HFSQL views or queries.
WINDEV By default, WINDEV includes an automatic management of password errors. This feature is not available in the code of the stored procedures.
Java Only the password errors that occurred on HFSQL data files are notified.
Ejemplo
// Check the status report of HReadFirst
IF HReadFirst(Customer, Name) = False THEN
	// Problem during the read operation
	// Checks whether the error is caused by a wrong password
	IF HErrorPassword() = True THEN
		Info("The password given to manipulate the Client data file is false")
		 // Open the window used to enter the password
		Password = Open(WIN_Enter_Password)
		HPass(Customer, Password)
	END
END
Sintaxis
<Result> = HErrorPassword()
<Result>: Boolean
  • True if the password is incorrect,
  • False if the password is correct.
Clasificación Lógica de negocio / UI: Lógica de negocio
Componente: wd300hf.dll
Ver también
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