4D v14SQL code error tracking and debugging |
||
|
4D v14
SQL code error tracking and debugging
SQL code error tracking and debugging
In 4D, there are two main possibilities for tracing and correcting your code: either using the Debugger to trace and correct any errors, or calling the ON ERR CALL command to catch the error and initiate the appropriate action. We can use both of these techniques to solve problems encountered with the SQL code. ARRAY LONGINT(aSoldTickets;0) As you can see in the window below, the application detects the error and opens the Syntax Error Window which provides more detailed information about the error and the place where it occurred. It is then easy to fix by simply pressing the Edit button. If the error is more complex, the application provides more information including the stack content, which can be displayed by pressing the Details button. The second main possibility for tracking SQL errors is using the ON ERR CALL command. ARRAY LONGINT(aSoldTickets;0) The SQL_Error_Handler method is as follows: `(P) SQL_Error_Handler To test the above example, in the main window of the "4D SQL Code Samples" database, press the Using ON ERR CALL button. |
PROPERTIES
Product: 4D ARTICLE USAGE
4D SQL Reference ( 4D v11 SQL Release 4 ) |