This is my situation.
I am using Oracle 10g, with OS authentication. In my database I have two schemas for e.g.
schema1 and schema2.
For every user that uses our application there is equivalent user defined in Oracle database.
Basically it uses Active Directory and oracle OS authentication.
When the user connects to application and than to database, the connection string looks something like this.
connString = "User Id=/; Data Source=servername";
OR
connString="Data Source=release;Integrated Security=yes";
When the application connects to the database, oracle will authenticate the user against the domain and active directory.
Once its connected, I change the default schema using following sql
"alter session set current_schema=schema1"
once this is done, I can run my application just fine.
How do i achieve this usign LLGLGen Pro, I saw there is a option to change / overwrite the current schema, but that is not helping me. I am getting table or view does not exists.
Any help would be greatly appreciated.