Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone!
If someone finds this post after so many years as I did, I figured out another way because the others were not totally clear or not working.
You can go into the code view of the DB connection and there you can find the part of the code which decrypts the password.
Something like:
routines.system.PasswordEncryptUtil.decryptPassword("")
If you use tJava you can put that value into a String variable and then print it on the console, like:
String dbPW = routines.system.PasswordEncryptUtil.decryptPassword("");
System.out.println(dbPW);
I hope this helps someone getting the DB password!
Kind regards,
Mark