Is there a TCustomConnection-Class

1. Question
===========
I'm trying DOA as a replacement of the free NCOCI8 from Dmitry Arefiev.
I've done all to prevent my project from database-
dependencies. That's why I'm using TCustomConnection-properties in many self-written database-releated-components.
BDE, Interbase, NCOCI8 use all a TCustomConnection-descendend for connection.
That's makes it easy.

But your TOracleSession is a direct TComponent-descendend.
Did I ommit something, or is it necesary to write my own wrapper class around TOracleSession, that derives from TCustomConnection.

2. Question
==========
Are there any issues in TClientDataSet-Applications using DOA?

Best regards
Dietmar
 
If you need a TCustomConnection descendant, then you will indeed need to derive your own class from it and encapsulate a TOracleSession.
 
Back
Top