thanks kevin
i certainly have seen occassional locking, but not necessarily because of Nettalk, as I have other applications in the same database.
is there an effect on your app, that it is able to detect or does the thread die silently?
... ok, i just ran a sql profile on a nettalk app, to try and understand.
i can see ThisNetworker._addfile, appears to wrap all insert statements in the RelationManager for an insert by default
in sql the effect appears to me as
SET Lock_timeout 10000
...declare the sql sp for the INsert statement
SET the Lock_timeout -1
execute the insert sp
....
set timeout is connection dependant, so it seems to me that the timeout is -1, meaning wait forever, when the Insert statement is executed.
is that is what is intended with this method?