Hi,
I have SQLPO objects scattered through my code, and it looks like I
have some UI performance issues that are going to require pushing some
of DB ops onto another thread, so I either need to restructure my code
to put all the DB accesses together so that they can be serialized on
a single operation queue or make SQLPO thread safe (preferred).
Not having dived into the internals, I am hopeful that some well
placed @synchronized() directives can do the trick. To those of you
who do have a good handle on the internals, could you suggest a
strategy / identify key resources&code blocks that should be
protected? I could naively start spraying @syncrhonized() directives
around, but I'm hoping that with a little guidance I could get a
better result with less pain.
Thanks,
Marty