FIX: Marshaling ADO Recordset Out-of-Process Causes Small Memory LeakID: Q230487
|
When an ADO recordset is marshaled out-of-process from a COM server, a small leak in Private Bytes occurs in the COM server's process space.
This leak occurs when using either a disconnected ADO recordset or a recordset created with the RDS DataFactory.
The leak is caused by ADO internally making an incorrect call to AddRef() on a Stream pointer within MarshalInterface.
A supported fix that corrects this problem is now available from Microsoft, but
it has not been fully regression tested and should be applied only to systems
experiencing this specific problem. If you are not severely affected by this
specific problem, Microsoft recommends that you wait for the next Microsoft Data Access Components 2.1 SP2
that contains this fix.
To resolve this problem immediately, contact Microsoft Product Support Services
to obtain the fix. For a complete list of Microsoft Product Support Services
phone numbers and information on support costs, please go to the following
address on the World Wide Web:
http://support.microsoft.com/support/supportnet/default.aspThe English version of this fix should have the following file attributes or later:
Date | Time | Version | Size | File Name | Platform |
---|---|---|---|---|---|
4/29/99 | 2.10.4029 | 850,944 | Msadce.dll |
Q154871 Determining If You Are Eligible for No-Charge Technical Support
Option Explicit
Function GetRS() As ADODB.Recordset
Dim rs As ADODB.Recordset
On Error Resume Next
Set rs = New ADODB.Recordset
rs.Fields.Append "x", adInteger
rs.Open
rs.AddNew
rs.Fields(0).Value = 1
rs.Update
rs.MoveFirst
Set GetRS = rs
End Function
Sub OutofProcLeak()
Dim x As New LeakEXE.LeakRS
Dim rs As ADODB.Recordset
For i = 0 To 200000
Set rs = x.GetRS
Debug.Print Str(i)
DoEvents
Next
Set rs = Nothing
Additional query words: ado rds out of process recordset memory leak small
Keywords : kbADO210fix kbRDS210fix kbMDAC210fix
Version : WINDOWS:1.0,2.1 SP1
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: May 7, 1999