|
|
|
|
|
HErrorPassword (Function) In french: HErreurMotDePasse
Not available with this kind of connection
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.
IF HReadFirst(Customer, Name) = False THEN
IF HErrorPassword() = True THEN
Info("The password given to manipulate the Client data file is false")
Password = Open(WIN_Enter_Password)
HPass(Customer, Password)
END
END
Syntax
<Result> = HErrorPassword()
<Result>: Boolean - True if the password is incorrect,
- False if the password is correct.
Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|