![]() |
![]() |
|
|
![]() |
![]() |
ALLBASE/SQL C Application Programming Guide: HP 9000 Computer Systems > Chapter 4 Runtime Status Checking and the sqlca![]() Using the sqlca |
|
The SQLCA is used for communicating information between the application program and ALLBASE/SQL. SQL places information in the SQLCA each time it is called. Since there is no guarantee that information from one call to SQL will be present after the next call to SQL, any information needed from the SQLCA must be obtained after each call to ALLBASE/SQL. Every ALLBASE/SQL program must have the SQL Communications Area (sqlca) declared in the global declaration part. You can use the INCLUDE command to declare the sqlca:
When the preprocessor parses this command, it inserts the following type definition into the modified source file:
Optionally, you can use this type definition in the global declaration part of your source file instead of using the INCLUDE command to declare the sqlca. The C preprocessor generates the following record declaration for sqlca_type in the type declaration include file:
The following elements in this record are available for you to use in status checking and are accessed as follows. The other elements are reserved for use by ALLBASE/SQL only.
The following table gives an overview of how ALLBASE/SQL sets these fields. Each field is then described with brief examples of how you can use it in one of two ways, including examples for using SQLEXPLAIN. Methods of handling specific status checking tasks are found in the succeeding section, "Approaches to Status Checking." Table 4-1 sqlca Status Checking Fields
sqlcode can contain one of the following values:
Note that the absolute value of sqlcode is the same as the absolute value associated with its corresponding message in the ALLBASE/SQL message catalog. This absolute value is part of the returned message. If an error occurs, the message number is preceded by DBERR. For example, the error message associated with an sqlcode of -2613 is:
Sqlcode is set by all SQL commands except the following directives:
When sqlcode is -4008, -14024, or a greater negative value than -14024, ALLBASE/SQL automatically rolls back the current transaction. When this condition occurs, ALLBASE/SQL also sets sqlwarn[6] to W. Refer to the discussion later in this chapter on sqlwarn[6] for more on this topic. More than one sqlcode is returned when more than one error occurs. For example, if you attempt to execute the following SQL command, two negative sqlcode values result:
The sqlcodes associated with the two errors are:
To obtain all sqlcodes associated with the execution of an SQL command, you execute the SQLEXPLAIN command until sqlcode is 0:
The function named SQLStatusCheck is executed when sqlcode is a negative number. Before executing SQLEXPLAIN for the first time, the program has access to the first sqlcode returned. Each time SQLEXPLAIN is executed subsequently, the next sqlcode becomes available to the program, and so on until sqlcode equals 0. This example explicitly tests the value of sqlcode twice: first to determine whether it is equal to 100, then to determine whether it is less than 0. If the value 100 exists, no error will have occurred and the program will display the message, No rows qualify for this operation. It is necessary for the program to display its own message in this case, because SQLEXPLAIN messages are available to your program only when sqlcode contains a negative number and when sqlwarn[0] contains a W. The sqlcode is also used in implicit status checking:
In the following situation, when ALLBASE/SQL detects a negative sqlcode, the code routine at label a2000 is executed. When ALLBASE/SQL detects an sqlcode of 100, the code routine at label a4000 is executed instead:
WHENEVER commands remain in effect for all SQL commands that appear physically after them in the source program until another WHENEVER command for the same condition appears. The scope of WHENEVER commands is fully explained later in this chapter under "Implicit Error Handling Techniques." sqlca.sqlerrd[2] can contain one of the following values:
A W in sqlwarn[0], in conjunction with a 0 in sqlcode, indicates that the SQL command just executed caused a warning condition. Warning conditions flag unusual but not necessarily important conditions. For example, if a program attempts to submit an SQL command that grants an already existing authority, a message such as the following would be retrieved when SQLEXPLAIN is executed:
In the case of the following warning, the situation may or may not indicate a problem:
This warning occurs when a program submits a RELEASE command without first terminating a transaction with a COMMIT WORK or ROLLBACK WORK. If the transaction did not perform any UPDATE, INSERT, or DELETE operations, this situation will not cause work to be lost. If the transaction did perform UPDATE, INSERT, or DELETE operations, the database changes are rolled back when the RELEASE command is processed. You retrieve the appropriate warning message by using SQLEXPLAIN. Note that you can not explicitly test sqlwarn[0] the way you can test sqlcode, since sqlwarn[0] always contains W when a warning occurs. An error and a warning condition may exist at the same time. In this event, sqlcode is set to a negative number, and sqlwarn[0] is set to W. Messages describing all the warnings and errors can be displayed as follows:
If multiple warnings but no errors result when ALLBASE/SQL processes a command, sqlwarn[0] is set to W and remains set until the last warning message has been retrieved by SQLEXPLAIN or another SQL command is executed. In the following example, DisplayWarning is executed when this condition exists:
When you use the SQLWARNING option of the WHENEVER command, ALLBASE/SQL checks for a W in sqlwarn[0]. You can use the WHENEVER command to do implicit status checking (equivalent to that done explicitly above) as follows:
A W in sqlwarn[1] indicates truncation of at least one character string value when the string was stored in a host variable. Any associated indicator variable is set to the value of the string length before truncation. For example:
If PartName was declared as a character array of 20 bytes, and the PartName column in the PurchDB.Parts table has a length of 30 bytes, then the following occurs:
A W in sqlwarn[2] indicates that at least one null value was eliminated from the argument set of an aggregrate function. For example:
If any OrderQty values are null, the following occurs:
A W in sqlwarn[3] indicates that the number of host variables specified in a dynamic SELECT or FETCH statement is unequal to the number of columns in the table being operated on. For example:
The FETCH will fail and the following occurs:
When an error occurs that causes ALLBASE/SQL to roll back the current transaction, sqlwarn[6] is set to W. ALLBASE/SQL automatically rolls back transactions when sqlcode is equal to -4008, or equal to or is less than -14024. When such errors occur, ALLBASE/SQL does the following:
If you want to terminate your program any time ALLBASE/SQL has to roll back the current transaction, you can just test sqlwarn[6].
In this example, the program executes the function SQLStatusCheck when an error occurs. The program terminates whenever ALLBASE/SQL has rolled back a transaction, but continues if an error has occurred but was not serious enough to cause transaction roll back. |
![]() |
||
![]() |
![]() |
![]() |
|||||||||
|