OraOLEDB.Oracle driver of 10g with C++ [message #189378] |
Thu, 24 August 2006 06:06 |
k99k
Messages: 1 Registered: August 2006
|
Junior Member |
|
|
We have substantial problems with the OraOLEDB.Oracle driver of 10g with C++.
If I produce a COMMAND object, add a ActiveConnection and delete the object again,
then despite release call the memory does not release.
I have this problem only with Oracle driver 10g.
With 9i everything runs marvelously. Can someone help me?
Provider=OraOLEDB.Oracle
for(int i=0;i<=1000;i++)
{
_CommandPtr m_pCommand(__uuidof(Command));
m_pCommand->ActiveConnection = AfxGetADODatabasePointer()->GetActiveConnection();
m_pCommand.Release();
}
|
|
|