C# COM+

  • Thread starter Thread starter Andrew smith
  • Start date Start date
A

Andrew smith

Hello,

I am currently working with a C# solution within COM+ with an Oracle
9.2.0.3 backend.

I have the following questions.

1.) Should there be one Oracle Session per COM+ transaction?

2.) Is it possible to debug within transactions (Libaray and Server
activiation)

3.) If I can't debug within transactions what else could I do to
replicate the transactional environment?

Thanks in advance....
 
Andrew,

See inline:

Andrew smith said:
Hello,

I am currently working with a C# solution within COM+ with an Oracle
9.2.0.3 backend.

I have the following questions.

1.) Should there be one Oracle Session per COM+ transaction?

This depends on what exactly you are doing. If you are calling other
components that require new transactions, then this might not be the case.
Also, it depends on how you are connecting (ODBC, OleDb, managed provider?).
2.) Is it possible to debug within transactions (Libaray and Server
activiation)

Yes, it is. If your project is in the solution, or you start a process
that triggers your solution, it should work.
3.) If I can't debug within transactions what else could I do to
replicate the transactional environment?

See above. =)

Hope this helps.
 
Back
Top