Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
7answers
2k views

How to force a Java thread to close a thread-local database connection

When Using a thread-local database connection, closure of the connection is required when the thread exists. This I can only do if I can override the run() method of the calling thread. Even that is ...
2
votes
2answers
49 views

How to throw throw from finalizers(of resource objects)

Finalizers are not destructors, finalizers are useless. From what I hear a lot of Java resource Objects dispose on finalize() "just in case". This seems an overly permissive attitude likely to lead ...
1
vote
1answer
165 views

C# How to track down a font disposal

I have a font which is being disposed of which is causing an exception and I can't find where the font is being disposed. I have a feeling it is being disposed of by print preview. Can someone ...