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

SQL Anywhere 11.0.1 » UltraLite - .NET Programming » UltraLite .NET 2.0 API reference » ULConnection class

 

DeclareEvent method

Declare an named event.

Syntax
Visual Basic
Public Sub DeclareEvent( _
   ByVal eventName As String _
)
C#
public void DeclareEvent(
   string  eventName
);
Parameters
  • eventName   The event name.

Remarks

Declare an event which can then be registered for and triggered. UltraLite predefines some system events triggered by operations on the database or the environment. The event name must be unique. Names are case insensitive. Throws error if name already used or invalid

See also