Difference between revisions of "SET ONERROR"

From Lianjapedia
Jump to: navigation, search
Line 6: Line 6:
  
 
==See Also==
 
==See Also==
[[DB_ERRORDIR]], [[ON ERROR]], [[SET ERRORVERSION]]
+
[[ON ERROR]]
  
 
==Description==
 
==Description==

Revision as of 11:27, 21 December 2012

Purpose

Disable ON ERROR error handling

Syntax

SET ONERROR ON | OFF | (<expL>)

See Also

ON ERROR

Description

When SET ONERROR is OFF, any ON ERROR error handling settings are disabled. To reinstate ON ERROR error handling, SET ONERROR must be set ON and the ON ERROR <command> must be reissued. This is particuarly useful for disabling ON ERROR error handling on an application or system-wide basis to allow use of the default error.mem error trapping.

Example

on error dialog box [Error]
? on("error")
dialog box [Error]
 
set onerror off
? on("error")