In the Enterprise Manager in the sessions i see both entries like GetModuleSettings or GetSearchItems, AddSearchItem as well entries from some custom modules I have made.
Concerning coding style in my OracleDataProvider classes most of my getMethods are something like
return CBO.FillCollection(OracleSqlHelper.ExecuteReader(ConnectionString,DatabaseOwner & ObjectQualifier & procName,arguments,"returnValue", GetType (businessClass))
Where should i intervene to close the reader?
Should instead of return immediately do something like
OracleSqlHelper.GetConnection(ConnectionString).Close()
or something else?
Thank you again for your help.