I am developing an application which would fetch data from an Oracle database. It is a reporting app, no insert, update, delete is required. I know that I can set privilege for the database user to only select
. But can I configure the database connection in Play application to make it readonly
? I would hate to make any change or create a new user for my app. I understand that Play Framework 2.1.3 uses BoneCp for data connectivity.
Edit
I am using Java version of Play!