VistaDB 6
VistaDB.DDA Namespace / IVistaDBDatabase Interface / UnregisterClrTrigger Method
The custom CLR Trigger name


In This Topic
    UnregisterClrTrigger Method
    In This Topic
    Unregister the link to CLR Trigger
    Syntax
    'Declaration
     
    
    Sub UnregisterClrTrigger( _
       ByVal triggerName As System.String _
    ) 
    'Usage
     
    
    Dim instance As IVistaDBDatabase
    Dim triggerName As System.String
     
    instance.UnregisterClrTrigger(triggerName)
    void UnregisterClrTrigger( 
       System.string triggerName
    )

    Parameters

    triggerName
    The custom CLR Trigger name
    Remarks
    During development of a CLR Trigger you will have to Unregister and Register the CLRTrigger into the database each time you rebuild your DLL for the changes to be loaded. The database does not look at the DLL after this initial registration. The entire assembly is loaded internal to the database file.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also