Hello Experts,
In my application's login screen, the user inputs their login ID and password through text fields. However, PowerBuilder is not validating the case sensitivity of the password. For instance, if the original password is "Abcd1234" and the user enters "abcd1234", it is still being accepted. How can I resolve this issue?
Thanks
Deva S
Most DBMS have a case sensitivity setting. If off, the password would only be checked for digit compliance. If on, then the case sensitivity check (in your case) would fail.
You guys do bring up an interesting enhancement suggestion though to have a Set case sensitivity (boolean) PowerScript function to also have the PBVM follow that same DBMS feature.
In the meantime, using a character for character check in PowerScript would be the workaround for now. HTH
Regards ... Chris