ScriptProgressed method

Invoked when SQL pass through scripts are run, to inform the application of progress. This method should return true to cancel further script execution, or return false to continue.

Syntax
Visual Basic

Public Function ScriptProgressed( _
   ByVal data As ULSqlProgressData _
) As Boolean
C#

public bool ScriptProgressed(
   ULSqlProgressData data
);
Parameters
  • data   A ULSqlProgressData object containing the information about the current script.

Return value

This method should return true to cancel script processing, or return false to continue.

Remarks

No UltraLite.NET API methods should be invoked during a ScriptProgressed call.

See also