Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.0 » UltraLite - .NET Programming » UltraLite .NET 2.0 API Reference » ULSqlPassthroughProgressListener interface

 

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