object pooling
one of the features of mts is object pooling i.e it uses re uses a single object for many clients.
i ran the foll. sample code
<vbcode>
Dim c As rbsChargeCode.clsChargeCode
Dim i As Long
For i = 1 To 999
Set c = New rbsChargeCode.clsChargeCode
c.nSolutionId = i
c.nSectorId = 115
c.nClientId = 114
c.nEngagementId = 118
c.sChargeCodeDesc = "90ss"
c.sChargeType = "N"
c.Insert
Next
</vbcode>
rbsChargeCode is deployed in the mts. when i ran the code it actually made 999 objects in the mts. i.e in mts against my class clsChargeCode the objects and activated coloumn showed 999. i am using win 2000.
is it that mts is actually creating 999 objects of my class or my understnding is wrong.
If any one of u gurus could help me...
Thanks,
AnkuR.

