This question is locked. New answers and comments are not allowed.
Hi
I'm trying to use ORM with Oracle database but I have a specific connection scenerio for any user of our software. All software users must exist as user roled (created and granted into database), so for example, there is an ADMIN user that login to our software to access to all options and modules. this user is created into Users table into System schema into our Database, but also must be create by CREATE USER ... as object into database for connection autentication purposes. Is it possible this?
<add name="BDConexionPrincipal" connectionString="Data Source=SOLAR;User Id={UID};Password={PID};" providerName="System.Data.OracleClient"/>
I replace {UID} and {PID} with the user and password login respectively.
My second question related with this is, it is possible via ORM to create users or execute DDL sql instructions?
thanks
I'm trying to use ORM with Oracle database but I have a specific connection scenerio for any user of our software. All software users must exist as user roled (created and granted into database), so for example, there is an ADMIN user that login to our software to access to all options and modules. this user is created into Users table into System schema into our Database, but also must be create by CREATE USER ... as object into database for connection autentication purposes. Is it possible this?
<add name="BDConexionPrincipal" connectionString="Data Source=SOLAR;User Id={UID};Password={PID};" providerName="System.Data.OracleClient"/>
I replace {UID} and {PID} with the user and password login respectively.
My second question related with this is, it is possible via ORM to create users or execute DDL sql instructions?
thanks