how to make asynchronus call to ORACLE Data Base

  • Thread starter Thread starter David
  • Start date Start date
D

David

I have Oracle 9.2 i I want to make async querys calls. Do is possible?

Thanks a lot

AA
 
Do it like you would do any other async call. Create a delegate and call
BeginInit(). Pass the async callback delegate to it. When your call is
finished the callback will be called.
 
Yes, but using that way I am consuming a worker thread no? I don't want to
consume a worker thread, is not necessay. ADO.NET 2.0 has Async Execute,
like BeginExecuteNonQuery, BeginExecuteReader etc.
Is possible to do that from my self?


Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top