You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code set module name to 'odpnet.module' and action name to 'odpnet.action'
varoracle=newOracleDataSourceBuilder("......").UseModuleName("odpnet.module").UseActionName("odpnet.action").Build();varsid=oracle.CreateCommand("select sys_context('USERENV','SID') from dual").ExecuteScalar();Console.WriteLine(sid);
Then, expected result of query below should be 'odpnet.module' and 'odpnet.action', but it is not.
select module, action from v$session where sid=...;