Call the oracle stored procedure, which launches on an Asp.Net page

Since in a .net application using OracleClient, you cannot use the method: BeginExecuteNonQuery which allows you to call a procedure and not wait for the end.

  http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.beginexecutenonquery.aspx

I was thinking of creating a procedure that starts the task.

   http://www.ulaska.com/oracle/oracle_procedure_job_submit.html

Do you think this will work?

+2
source share
1 answer

I think your solution will work

I see no problems with calling a stored procedure (which starts the task) from asp.net

0
source

Source: https://habr.com/ru/post/1761774/


All Articles