Hello
I have a multithreaded application where each thread owns its own session.
If I set the Threadsafe property to true for each sessions, does it mean there is a risk for all threads to block each other when they are accessing the database?
Does each thread stop waiting for query executing or is there a way to ask only to threads trying to use the session to be suspended during the use of this session?
Last question : what if Threadsafe = false and 2 threads ask for executing a select query?
Thanks for your answers to all of this...
CdeV
I have a multithreaded application where each thread owns its own session.
If I set the Threadsafe property to true for each sessions, does it mean there is a risk for all threads to block each other when they are accessing the database?
Does each thread stop waiting for query executing or is there a way to ask only to threads trying to use the session to be suspended during the use of this session?
Last question : what if Threadsafe = false and 2 threads ask for executing a select query?
Thanks for your answers to all of this...
CdeV