entaroadun
Programmer
I have a component registered in COM+ that doesn't support transactions. It performs database-read operations with ADO.
Can I call:
Set cn = New ADODB.Connection
or do I have to:
Set cn = CreateObject("ADODB.Connection"
The connection is to a SQL Server 7. I know SQL Server will enforce connection pooling and all that but do I need COM+ to get involved as well for the resource savings?
If the question doesn't make sense, please let me know. I am new to this and my understanding of COM+ may not be conceptually correct.
Can I call:
Set cn = New ADODB.Connection
or do I have to:
Set cn = CreateObject("ADODB.Connection"
The connection is to a SQL Server 7. I know SQL Server will enforce connection pooling and all that but do I need COM+ to get involved as well for the resource savings?
If the question doesn't make sense, please let me know. I am new to this and my understanding of COM+ may not be conceptually correct.