JavaScript Editor js editor     Web development 



Main Page

Occurs after SQL view definition is removed from the current database. There are two versions of the syntax.

PROCEDURE dbc_AfterDropView(cViewName) 
PROCEDURE dbc_AfterDropView
LPARAMETERS cViewName

Parameters

cViewName


Specifies the name of the view deleted from the current database.

Remarks

DROP VIEW is almost identical to DELETE VIEW; DROP VIEW is the ANSI SQL standard syntax for deleting a SQL view. Both commands remove a view definition from the active database, but the syntax is slightly different.

You can use the dbc_AfterDropView event to track access to the database after a view definition is removed from the database.

Example

В Copy Code
* Reports to the screen Event name, where it is called from and ;
* the parameter passed.
PROCEDURE dbc_AfterDropView ;
         (cViewName)
 ? '>>   ' + PROGRAM()
 ?? ' in ' + SUBSTR(SYS(16),RAT('\',SYS(16))+1)
 ? '     cViewName  = ' + TRANSFORM(cViewName) + ' - ' ;
                    + TYPE('cViewName ')+' /end/ '
ENDPROC

See Also



JavaScript Editor js editor     Web development