|
|
|
|
|
HErrorPassword (Function) In french: HErreurMotDePasse
Not available with this kind of connection
After the execution of a read or write function in a table, allows you to find out whether an error caused by a wrong password occurred on this table. It is recommended to use HErrorPassword after the first function that handles an HFSQL table. This function can be used with the HFSQL tables, HFSQL views or queries.
IF HReadFirst(Customer, Name) = False THEN
IF HErrorPassword() = True THEN
Info("The password given to manipulate the Client table 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|