I am implementing a web application where the user needs to authenticate with his database username and password. I woudld like to use the same entered username and password to connect to the database.
In other words, i would like that these two fields:(dbusername and dbpassword) in the hibernate configuration file:
<property name="hibernate.connection.username">dbusername</property> <property name="hibernate.connection.password">dbpassword</property> can be filled dynimacally dependant on the user who enterd his username and password to log in the web application.
is this do-able?
thanks