![]() |
![]() |
|
|
![]() |
![]() |
ALLBASE/SQL FORTRAN Application Programming Guide: HP 3000 MPE/iX Computer Systems > Chapter 4 Host Variables![]() Using Host Variables |
|
You use host variables in SQL commands as follows:
This chapter provides examples illustrating where, in the commands itemized above, the SQL syntax supports host variables. This chapter also takes a brief look at two special cases:
Some of the examples are numbered so later in this chapter, under "Declaring Host Variables", you can quickly find declaration examples for the same host variables. Host variable names in FORTRAN programs must:
In all SQL commands containing host variables, the host variable name must be preceded by a colon:
Host variables can be used for input or for output:
When using an input host variable, you must initialize it before using it. Host variables containing data values can be input or output host variables. In the following SELECT command, the INTO clause contains two output host variables: PartNumber and PartName; ALLBASE/SQL puts data from the PurchDB.Parts table into these host variables. The WHERE clause contains one input host variable: PartNumber; ALLBASE/SQL reads data from this host variable to determine which row to retrieve.
In this example, one host variable, PartNumber, is used for both input and output. Host variables that contain null value indicators are called indicator variables. Indicator variables are used in SELECT, FETCH, and INSERT commands to identify null values, and in SELECT and FETCH commands to identify truncated output strings. In SELECT and FETCH commands, an indicator variable is an output host variable containing one of the following indicators, which describe the data ALLBASE/SQL returns:
In the INSERT command, an indicator variable is an input host variable. You put one of the following indicators into the indicator variable to tell ALLBASE/SQL when to insert a null value in a column:
An indicator variable must appear in an SQL command immediately after the host variable whose data it describes. The following SELECT command uses an indicator variable, PartNameInd, for data from the PartName column. When this column contains a null value, ALLBASE/SQL puts a negative number into PartNameInd:
Any column not defined with the NOT NULL attribute may contain null values. In the PurchDB.Parts table, ALLBASE/SQL prevents the PartNumber column from containing null values, because it was defined as NOT NULL. In the other two columns, however, null values may occur:
Null values have certain properties that you need to remember when manipulating data that may be null. For example, ALLBASE/SQL ignores columns or rows containing null values when evaluating an aggregate function (except that COUNT(*) includes all null values). Refer to the ALLBASE/SQL Reference Manual for a complete account of the properties of null values. Be sure to use an indicator variable in the SELECT and FETCH commands whenever columns accessed may contain null values. A runtime error results if ALLBASE/SQL retrieves a null value and the program contains no indicator variable. You can use an indicator variable to detect truncated strings in the SELECT and FETCH commands. In the SELECT command illustrated above, PartNameInd contains a value greater than zero (>0) when a part name is too long for the host variable declared to hold it. The value in PartNameInd indicates the actual length of the string before truncation. |
![]() |
||
![]() |
![]() |
![]() |
|||||||||
|