I'm implementing a DLL containing a shared ADO Connection by using the ConnectionObject
property of TADOConnection
and passing it across DLL boundaries into other instances of TADOConnection
. I need to make sure COM is initialized, so I need to call CoInitialize
/ CoUninitialize
. Currently it's in the context of a VCL main thread, but could be elsewhere in another thread, which of course requires its own instance of COM. I'm not currently implementing multi-threading.
Where is the appropriate place to call these; inside the DLL (during loading/unloading), outside the DLL (calling process), or both? Considering it's only one thread, shouldn't it be only one time outside the DLL in the original process?
I'm assuming the original calling thread should be solely responsible for this, since COM runs in the context of a thread. Of course calling them on both sides shouldn't hurt any, however it would also create multiple COM instances.
Long story short... Is it "safe to be safe" in this case? Or is it important to only keep one COM instance?