mmmmmm DBXTalk and image save sounded a bell... When we developed OpenDBXDriver, we idea was to make it as simple as possible for the final user. One thing we did was to automatically disconnect all opened connections at system shutdown...so that not to let connections open in the DB.�
Now I realized that we have this:
DBXConnection class >> shutDown
self
allInstancesDo: [:each | each shutDown]
but it should actually be�
DBXConnection class >> shutDown: quitting
� � quitting ifTrue: [ self allInstancesDo: [:each | each shutDown]
I fixed this some time ago (OpenDBXDriver-MarianoMartinezPeck.38)
Maybe this could be related?�
Paul are you also using DBXTalk just by chance in that image?
Cheers,