This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Is it possible to fire multiple asynchronous operations for an Oracle connection?
As an example, this would be something like:
var result1 = unitOfWork.BeginStoredProcedure1();
var result2 = unitOfWork.BeginStoredProcedure2();
var data1 = result1.EndStoredProcedure1(result1);
var data2 = result2.EndStoredProcedure2(result2);
Craig
|
|
|
No, you would need to manage that yourself via worker threads (and I think you might run into the dreaded "this connection already has an open data reader" error). |
|