A
Alexander Nenashev
i'm writing client apps that connect to
ms sql/olap servers during startup.
that takes about 10-20 seconds in our network.
so quick testing of the code's changes (especially when
making ui) isn't possible.
i've tried to cash ADO connection objects
in ActiveX exe component written in VB 6.0.
but unfortunately i couldn't use the Connection objects
with ADODB.Recordset, ADOMD.Cellset, ADOMD.Catalog
and so on. I get COM error in that case.
i guess the Connection object should be created in the same process
as consumer objects, but not sure.
so i moved all ADODB.Recordset, ADOMD.Cellset, ADOMD.Catalog
creation to ActiveX exe too.
it works but working with these objects is slowly because of marshaling.
maybe something like that could be realized with ADO.NET?
any suggestions???
ms sql/olap servers during startup.
that takes about 10-20 seconds in our network.
so quick testing of the code's changes (especially when
making ui) isn't possible.
i've tried to cash ADO connection objects
in ActiveX exe component written in VB 6.0.
but unfortunately i couldn't use the Connection objects
with ADODB.Recordset, ADOMD.Cellset, ADOMD.Catalog
and so on. I get COM error in that case.
i guess the Connection object should be created in the same process
as consumer objects, but not sure.
so i moved all ADODB.Recordset, ADOMD.Cellset, ADOMD.Catalog
creation to ActiveX exe too.
it works but working with these objects is slowly because of marshaling.
maybe something like that could be realized with ADO.NET?
any suggestions???