Difference between revisions of "SET ONERROR"

From Recital Documentation Wiki
Jump to: navigation, search
 
Line 15: Line 15:
  
 
==See Also==
 
==See Also==
ON ERROR, SET ERRORVERSION
+
[[ON ERROR]], [[SET ERRORVERSION]]
  
  
Line 35: Line 35:
 
==Products==
 
==Products==
 
Recital Database Server, Recital Mirage Server, Recital Terminal Developer
 
Recital Database Server, Recital Mirage Server, Recital Terminal Developer
 +
[[Category:Documentation]]
 +
[[Category:Commands]]
 +
[[Category:Set_Commands|ONERROR]]

Revision as of 17:30, 11 March 2009

SET ONERROR

Class

Error Handling and debugging


Purpose

Disable ON ERROR error handling


Syntax

SET ONERROR ON | OFF | (<expL>)


See Also

ON ERROR, SET ERRORVERSION


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")


Products

Recital Database Server, Recital Mirage Server, Recital Terminal Developer