Icon SendProcedureProgress Method

procedure SendProcedureProgress(const Status: String;
      PercentDone: Word; var Abort: Boolean)

Usage

Call the SendProcedureProgress method to send progress information from a server-side procedure on a database server back to the calling session. When the session receives this progress information, it then triggers the OnRemoteProcedureProgress event. Use the Status parameter to specify status information regarding the progress, the PercentDone parameter to indicate the percentage of progress, and the Abort parameter to allow the session to force an abort of the current processing.

Information The server-side procedure code can choose to respect the Abort parameter or ignore it. It is strictly up to the developer of the server-side procedure.
Image