What is the best way to manage database connections to ensure that all operations are performed within the same user session and are isolated from other application users? I also need to execute
ALTER SESSION [here, configuring a database parameter that varies depending on the user logged into the application]
after logging into the database. It would also be ideal to have control over how long the connection is maintained.
What is the best way to implement single sign-on for both the application and the database (such as Oracle), meaning to log into the database with the same user credentials as those used to log into the application?
I am aware that this is not efficient for web applications. However, this is the business requirement, and I am not going to argue with it.
ALTER SESSION [here, configuring a database parameter that varies depending on the user logged into the application]
after logging into the database. It would also be ideal to have control over how long the connection is maintained.
What is the best way to implement single sign-on for both the application and the database (such as Oracle), meaning to log into the database with the same user credentials as those used to log into the application?
I am aware that this is not efficient for web applications. However, this is the business requirement, and I am not going to argue with it.
Comment