BeforeDropView, AfterDropView
These database events fire when a view is removed from a database, whether programmatically using the DELETE VIEW or DROP VIEW commands, or visually using the Database Designer.
Usage |
PROCEDURE DBC_BeforeDropView( cViewName ) PROCEDURE DBC_AfterDropView( cViewName ) |
Parameter |
Value |
Meaning |
cViewName |
Character |
The name of the view. |
Example |
* This goes in the stored procedures for a database. PROCEDURE DBC_BeforeDropView(cViewName) WAIT WINDOW PROGRAM() + CHR(13) + ; 'cViewName: ' + cViewName PROCEDURE DBC_AfterDropView(cViewName) WAIT WINDOW PROGRAM() + CHR(13) + ; 'cViewName: ' + cViewName * End of stored procedures. * Create a view, and then remove it. CREATE SQL VIEW TestView AS SELECT * FROM CUSTOMER DROP VIEW TestView |
See Also |
BeforeCreateView, Create SQL View, Database Events, Delete View, Drop View |