devxlogo

Changing Password in Oracle 7.3 database from PB

Changing Password in Oracle 7.3 database from PB

Question:
I am creating a “Change Password” screen in PowerBuilder 5.0. The window basically accepts the password entered by the user, verifies it by connecting to the database, then tries to change the password in the database. I tried using the Oracle “ALTER” command in PowerScript but with no success.

Am I on the wrong track? Maybe you can tell me what I need to do to change the password on the Oracle database from PowerBuilder.

Any help you can give me is greatly appreciated.

Thank You.Tom

Answer:
You will need to use the EXECUTE IMMEDIATE command to achieve what you are trying to do.

The EXECUTE IMMEDIATE allows you to build a string and have it executed by the backend database.

To change the users password use the following code:

String ls_SQLls_SQL = "ALTER USER " + as_User + " IDENTIFIED BY ~"" + as_NewPass + "~""EXECUTE IMMEDIATE :ls_SQL USING SQLCA;
See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist