Pro*Fortran Supplement to the Oracle Precompilers Go to Product Documentation Library
Library
Go to books for this product
Product
Go to Contents for this book
Contents
Go to Index
Index



Go to previous file in sequence Go to next file in sequence

Writing a Pro*FORTRAN Program


This chapter provides the basic information you need to write a Pro*FORTRAN program, including:


Programming Guidelines

This section deals with embedded SQL syntax, coding conventions, and FORTRAN-specific features and restrictions. Topics are arranged alphabetically for quick reference.

Case-sensitivity

Though the standard FORTRAN character set excludes lowercase alpha characters, many compilers allow them in identifiers, comments, and quoted literals.

The Pro*FORTRAN Precompiler is not case-sensitive; however, some compilers are. If your compiler is case-sensitive, you must declare and reference variables in the same uppercase/lowercase format. Check your FORTRAN compiler user's guide.

Coding Area

You must code EXEC SQL and EXEC ORACLE statements in columns 7 through 72 (columns 73 through 80 are ignored). The other columns are used for the following purposes:

On some systems, terminal format is supported; that is, entry is not restricted to certain columns. In this manual, the program fragments and sample programs are in ANSI format (FORMAT=ANSI).

No more than one statement can appear on a single line.

Comments

You can place FORTRAN comment lines within SQL statements. FORTRAN comment lines start with the letter C or an asterisk (*) in column 1. You can also place ANSI SQL-style comments (- - ...) in SQL statements at the end of a line, and you can place C-style comments (/* ... */) in SQL statements.

The following example shows all three styles of comments:

      EXEC SQL SELECT ENAME, SAL 
C     Assign column values to host variables. 
     1    INTO :ENAM, :ESAL   -- output host variables 
     2    FROM EMP 
     3    /* Use input host variable in 
     4       search condition */ 
     5    WHERE DEPTNO = :DNUM 

You cannot nest comments. Blank lines are treated as comments, but are not allowed within a continued statement.

Continuation Lines

You can continue SQL statements from one line to the next, according to the rules of FORTRAN. To code a continuation line, place a non-zero, non-blank character in column 6. In this manual, digits are used as continuation characters, as the following example shows:

*     Retrieve employee data. 
      EXEC SQL SELECT EMPNO, ENAME, JOB, SAL 
     1    INTO :ENUM, :ENAM, :EJOB, :ESAL 
     2    FROM EMP 
     3    WHERE DEPTNO = :DNUM 

To continue a string literal from one line to the next, code the literal through column 72. On the next line, code a continuation character and the rest of the literal. An example follows:

*     Execute dynamic SQL statement. 
      EXEC SQL EXECUTE IMMEDIATE 'UPDATE EMP SET COMM = 500 WHERE 
     1    DEPTNO=20' 

Most FORTRAN implementations allow up to 19 continuation lines. Check your FORTRAN compiler user's guide.

Delimiters

Though FORTRAN does not require blanks to delimit keywords, you must use blanks to delimit keywords in SQL statements. FORTRAN uses apostrophes to delimit string literals, as in

*     Display employee name. 
      IF (ENAM .LT. 'ZZZZZ') THEN 
          PRINT *, ' Employee Name: ', ENAM 
      END IF 

SQL also uses apostrophes to delimit string literals, as in

*     Retrieve employee data. 
      EXEC SQL SELECT ENAME, SAL 
     1    INTO :ENAM, :ESAL 
     2    FROM EMP 
     3    WHERE JOB = 'CLERK' 

But SQL uses quotation marks to delimit identifiers containing special or lowercase characters, as in

*     Create table. 
      EXEC SQL CREATE TABLE "Emp2" (EMPNO  NUMBER(4), ...)

Embedded SQL Syntax

To use a SQL statement in your host program, precede the SQL statement with the EXEC SQL clause. Embedded SQL syntax is described in the Oracle7 Server SQL Reference. The precompiler translates all EXEC SQL statements into calls to the runtime library SQLLIB.

File Length

The Pro*FORTRAN Precompiler cannot process arbitrarily long source files. Some of the variables used internally limit the size of the generated file. There is no absolute limit to the number of lines allowed, but the following aspects of the source file are contributing factors to the file-size constraint:

To prevent problems related to this limitation, use multiple program units to sufficiently reduce the size of the source files.

File Naming Restrictions

Avoid using filenames starting with "sql," because errors might occur. For example, if you name a file SQLERROR.PFO, name conflicts are returned by some linkers because there will be an array named SQLERD and a common block named SQLERD.

FORTRAN Versions

The Pro*FORTRAN Precompiler supports the standard implementation of FORTRAN for your operating system (usually FORTRAN 77). For more information, see your Oracle system-specific documentation.

Host Variable Names

Host variable names must consist only of letters and digits, and must begin with a letter. They can be any length, but only the first 31 characters are significant. Some compilers prohibit variable names longer than six characters, or ignore characters after the sixth. Check your FORTRAN compiler user's guide.

Logical and Relational Operators

Logical and relational operators are different for FORTRAN and SQL, as shown in Table 1 - 1 and Table 1 - 2. For example, the SQL operators do not have leading and trailing periods.

SQL Operators FORTRAN Operators
NOT .NOT.
AND .AND.
OR .OR.
-- .EQV.
-- .NEQV.
Table 1 - 1. Logical Operators



SQL Operators FORTRAN Operators
= .EQ.
< >, !=, ^= .NE.
> .GT.
< .LT.
>= .GE.
<= .LE.
Table 1 - 2. Relational Operators



Logical and relational FORTRAN operators are not allowed in SQL statements.

MAXLITERAL Default

With the MAXLITERAL precompiler option you can specify the maximum length of string literals generated by the precompiler, so that compiler limits are not exceeded. For Pro*FORTRAN, the default value is 1000, but you might need to specify a lower value.

For example, if your FORTRAN compiler cannot handle string literals longer than 512 characters, specify MAXLITERAL=512. Check your FORTRAN compiler user's guide.

Nulls

In SQL, a null represents a missing, unknown, or inapplicable column value; it equates neither to zero nor to a blank. Use the NVL function to convert nulls to non-null values, use the IS [NOT] NULL comparison operator to search for nulls, and use indicator variables to insert and test for nulls.

Program Units

In FORTRAN, a program unit is a function, subroutine, or main program. In Pro*FORTRAN, an input file contains one or more program units.

If a program unit contains SQL statements, it must

More than one program unit can contain SQL statements. For example, you can DECLARE a cursor in one program unit, OPEN it in another, FETCH from it in yet another, and CLOSE it in still another as long as they are in the same file.

Scope of Host Variables

The scoping rules for FORTRAN identifiers apply to host variables. Host variables declared in a program unit are local to that unit, and host variables declared in the main program are not global. So, all host variables used in a program unit must be declared in that unit in the Declare Section.

Statement Labels

You can associate FORTRAN numeric statement labels (1 - 99999) with SQL statements, as shown in the following example:

*     Insert row into employee table. 
  500 EXEC SQL INSERT INTO EMP (EMPNO, ENAME, JOB, DEPTNO) 
     1    VALUES (:ENUM, :ENAM, :EJOB, :DNUM) 

And, you can reference statement labels in a WHENEVER DO or WHENEVER GOTO statement, as this example shows:

*     Handle SQL execution errors.
      EXEC SQL WHENEVER SQLERROR GOTO 900
      ... 
*     SQLEMC stores the Oracle error code and message.
  900 WRITE (*, 8500) SQLEMC
 8500 FORMAT (1X, 70A1)
      ...

Statement labels must be coded in columns 1 through 5, and must not appear in continuation lines. Statement labels may consist of alphanumeric characters, only; the special characters, underscore ( _ ), hyphen (-), and dollar sign ($) are not allowed.

The Pro*FORTRAN Precompiler does not use statement labels in generated code. Therefore, the BEGLABEL and ENDLABEL options that were available in earlier Pro*FORTRAN versions are not supported in this version and will return an informational message if found.

Statement Terminator

Embedded SQL statements are terminated by an end-of-line, as the following example shows:

*     Delete employee. 
      EXEC SQL DELETE FROM EMP WHERE EMPNO = :ENUM

However, a continuation character on the next line overrides an end-of-line.


Required Declarations and SQL Statements

Passing data between Oracle and your application program requires host variables and event handling. This section shows you how to meet these requirements.

The Declare Section

You must declare all program variables to be used in SQL statements in the Declare Section, which begins with the statement

      EXEC SQL BEGIN DECLARE SECTION 

and ends with the statement

      EXEC SQL END DECLARE SECTION 

Between these two statements only the following are allowed:

In a Pro*FORTRAN source file, multiple program units can contain SQL statements. So, multiple Declare Sections are allowed per precompiled unit. Furthermore, a Pro*FORTRAN program can contain multiple files.

Using the INCLUDE Statement

FORTRAN INCLUDEs are processed by the FORTRAN compiler, while EXEC SQL INCLUDE statements are processed by Pro*FORTRAN to copy files into your host program, as the following example shows:

*     Copy in the SQL Communications Area (SQLCA)
*     and the Oracle Communications Area (ORACA).
      EXEC SQL INCLUDE SQLCA
      EXEC SQL INCLUDE ORACA

You can INCLUDE any file. When you precompile your Pro*FORTRAN program, each EXEC SQL INCLUDE statement is replaced by a copy of the file named in the statement.

Filename Extensions

If your system uses file extensions but you do not specify one, the Pro*FORTRAN Precompiler assumes the default extension for source files (usually FOR or F). The default extension is system dependent. For more information, see your Oracle system-specific documentation.

Search Paths

If your system uses directories, you can set a search path for INCLUDEd files using the INCLUDE precompiler option, as follows:

INCLUDE=path 

where path defaults to the current directory.

The precompiler first searches the current directory, then the directory specified by the INCLUDE option, and finally the directory for standard INCLUDE files. You need not specify a path for standard files such as the SQLCA and ORACA. However, a path is required for nonstandard files unless they are stored in the current directory.

You can also specify multiple paths on the command line, as follows:

... INCLUDE=<path1> INCLUDE=<path2> ... 

When multiple paths are specified, the precompiler searches the current directory first, then the path1 directory, then the path2 directory, and so on. The directory containing standard INCLUDE files is searched last. The path syntax is system specific. Check the Oracle installation or user's guide for your system.

Caution

Remember, the precompiler searches for a file in the current directory first even if you specify a search path. If the file you want to INCLUDE is in another directory, make sure no file with the same name is in the current directory or any other directory that precedes it in the search path. Also, if your operating system is case-sensitive, be sure to specify the same upper/lower case filename under which the file is stored.

Event and Error Handling

Pro*FORTRAN provides forward and backward compatibility when checking the outcome of executing SQL statements. However, there are restrictions on using SQLCA, SQLCODE, and SQLSTATE depending on the MODE and DBMS option settings. For more information, see Chapter 2 of this manual and Chapter 8 of the Programmer's Guide to the Oracle Precompilers.


Host Variables

Host variables are the key to communication between your host program and Oracle. Typically, a host program inputs data to Oracle, and Oracle outputs data to the program. Oracle stores input data in database columns and stores output data in program host variables.

Declaring Host Variables

Host variables are declared according to FORTRAN rules, using the FORTRAN datatypes that are supported by Oracle. FORTRAN datatypes must be compatible with the source/target database column. The supported FORTRAN datatypes are shown in Table 1 - 3. One-dimensional arrays of FORTRAN types are also supported.

Variable Declaration Description
BYTE var CHARACTER var single character
CHARACTER var*n CHARACTER*n var n-byte character string
CHARACTER(*) var character string
INTEGER var INTEGER*2 var INTEGER*4 var default-length integer 2-byte integer 4-byte integer
LOGICAL var LOGICAL*1 var LOGICAL*2 var LOGICAL*4 var single character 2-byte character string 4-byte character string
REAL var REAL*4 var REAL*8 var DOUBLE PRECISION var 4-byte real number 8-byte real number
VARCHAR*n <= 32765-byte, variable length character string (3)
SQLCURSOR cursor variable
Table 1 - 3. Host Variable Declarations



Notes:

Table 1 - 4 shows the compatible Oracle internal datatypes.

Internal Type FORTRAN Type Description
CHAR(x) (1) VARCHAR2(y) (1) BYTE CHARACTER CHARACTER*n VARCHAR*n var1, var2, var3 single character variable-length string variable-length string variable-length string
NUMBER NUMBER (p,s) (2) CHARACTER*n var CHARACTER var *n CHARACTER(*)
DOUBLE PRECISION
INTEGER INTEGER*2 INTEGER*4
LOGICAL var LOGICAL*1 var LOGICAL*2 var LOGICAL*4 var
REAL REAL*4 REAL*8
VARCHAR*n var1, var2, var3
n-byte character string (3) character string (as parameter)
8-byte float number
integer (default size) 2-byte integer 4-byte integer
single character 2-byte character string 4-byte character string
float number 4-byte float number 8-byte float number
variable-length string
DATE (4) LONG RAW (1) LONG RAW ROWID (5) MLSLABEL (6) CHARACTER*n var CHARACTER*n var VARCHAR*n var1, var2, var3 n-byte character string n-byte variable-length string variable-length string
CURSOR SQLCURSOR cursor variable
Table 1 - 4. Compatible Oracle Internal Datatypes



Notes:

Example Declarations

In the following example, you declare several host variables for use later in your Pro*FORTRAN program:

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4     ENUM
          CHARACTER*10  ENAM
          REAL*4        ESAL
          INTEGER*2     DNUM
          CHARACTER*15  DNAM
      EXEC SQL END DECLARE SECTION 

You can also declare one-dimensional arrays of FORTRAN types, as the next example shows:

*     Declare host arrays. 
      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4     ENUM(100) 
          CHARACTER*10  ENAM(100) 
          REAL*4        ESAL(100) 
      EXEC SQL END DECLARE SECTION 

Repeating Definitions

You can use repeating definitions for datatypes, as in

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          ... 
          REAL*4  ESAL, ECOM, EBON 
      EXEC SQL END DECLARE SECTION 

which is equivalent to

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          ... 
          REAL*4  ESAL 
          REAL*4  ECOM 
          REAL*4  EBON 
      EXEC SQL END DECLARE SECTION  

Initialization

While it is not necessary to initialize host variables inside the Declare Section, you can use the FORTRAN DATA statement to initialize host variables, as follows:

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          ... 
          REAL*4  MINSAL 
          REAL*4  MAXSAL 
          DATA  MINSAL, MAXSAL /1000.00, 5000.00/ 
      EXEC SQL END DECLARE SECTION 

DATA statements must come before the first executable FORTRAN statement but after any variable and PARAMETER declarations. Later in your program, you can change the values of variables initialized by a DATA statement. You cannot, however, reuse a DATA statement to reset the changed values.

Constants

You can use the FORTRAN PARAMETER statement inside or outside the Declare Section to assign constant values to host variables, as the following example shows:

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          CHARACTER*5  UID 
          CHARACTER*5  PWD 
          PARAMETER (UID = 'SCOTT', PWD = 'TIGER') 
      EXEC SQL END DECLARE SECTION  

COMMON Blocks

Using the FORTRAN COMMON statement, you can keep host variables and arrays in a common storage area as if they were globally defined, so that their values can be used in different program units. The COMMON statement must appear outside the Declare Section, and must come before the first executable FORTRAN statement but after variable declarations. An example follows:

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4     ENUM 
          CHARACTER*10  ENAM 
          REAL*4        ESAL 
          REAL*4        ECOM 
      EXEC SQL END DECLARE SECTION 
*     Define COMMON block. 
      COMMON  /EMPBLK/ ENUM, ESAL, ECOM 

In this example, EMPBLK is the COMMON block name. The names of COMMON blocks, subroutines, and functions are the only globally defined identifiers in a FORTRAN program. Avoid using blank COMMON blocks.

You make a COMMON block available to other program units by redefining it in those units. You must repeat the type declarations for variables in a COMMON block in all units where the block is used.

Only the order and datatypes of variables in the COMMON block matter, not their names. So, the variable names can differ from unit to unit. However, it is good programming practice to use the same names for corresponding variables in each occurrence of a COMMON block.

The following restrictions apply to COMMON blocks:

EQUIVALENCE Statement

With the FORTRAN EQUIVALENCE statement, you can use two or more host variable names for the same storage location. The EQUIVALENCE statement must come before the first executable FORTRAN statement.

You can equivalence CHARACTER variables only to other CHARACTER variables. You cannot equivalence VARCHAR variables.

Special Requirements for Subroutines

You must explicitly declare host variables in the Declare Section of the program unit that uses them in SQL statements. Thus, variables passed to a subroutine and used in SQL statements within the subroutine must be declared in the subroutine Declare Section. An example follows:

      ... 
      CALL LOGON (UID, PWD) 
      ... 
      SUBROUTINE LOGON (UID, PWD) 
*     Declare host variables in subroutine. 
      EXEC SQL BEGIN DECLARE SECTION 
          CHARACTER*10  UID 
          CHARACTER*10  PWD 
      EXEC SQL END DECLARE SECTION 
      ... 
      EXEC SQL CONNECT :UID IDENTIFIED BY :PWD 
      WRITE(*, 1000) UID 
 1000 FORMAT(/,' Connected to Oracle as user: ', A10, /) 
      RETURN 
      END 

Restrictions

Implicit Declarations. FORTRAN allows implicit declaration of INTEGER and REAL variables. Unless explicitly declared otherwise, identifiers starting with I, J, K, L, M, or N are assumed to be of type INTEGER, and other identifiers are assumed to be of type REAL.

However, implicit declaration of host variables is not allowed; it triggers an "undeclared host variable" error message at precompile time. Every variable referenced in a SQL statement must be defined in the Declare Section.

Complex Numbers. In FORTRAN, complex numbers, that is, numbers with a real part and an imaginary part, are represented using the datatype COMPLEX. Pro*FORTRAN, however, does not support the use of COMPLEX host variables in SQL statements.

Referencing Host Variables

You use host variables in SQL data manipulation statements. A host variable must be prefixed with a colon (:) in SQL statements but must not be prefixed with a colon in FORTRAN statements, as this example shows:

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4     ENUM 
          CHARACTER*10  ENAM 
          REAL*4        ESAL 
          CHARACTER*10  EJOB 
      EXEC SQL END DECLARE SECTION 
      ... 
      WRITE (*, 3100) 
 3100 FORMAT (' Enter employee number: ') 
      READ (*, 3200) ENUM 
 3200 FORMAT (I4) 
      EXEC SQL SELECT ENAME, SAL, JOB 
     1    INTO :ENAM, :ESAL, :EJOB 
     2    FROM EMP 
     3    WHERE EMPNO = :ENUM 
      BONUS = ESAL / 10 
      ... 

Though it might be confusing, you can give a host variable the same name as an Oracle table or column, as the following example shows:

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4     ENUM
          CHARACTER*10  ENAM
          REAL*4        ESAL
      EXEC SQL END DECLARE SECTION 
     ... 
      EXEC SQL SELECT ENAME, SAL 
     1    INTO :ENAM, :ESAL 
     2    FROM EMP 
     3    WHERE EMPNO = :ENUM

Restrictions

A host variable cannot substitute for a column, table, or other Oracle object in a SQL statement and must not be an Oracle reserved word. See Appendix B of the Programmer's Guide to the Oracle Precompilers for a list of Oracle reserved words and keywords.


Indicator Variables

You use indicator variables to provide information to Oracle about the status of a host variable, or to monitor the status of data that is returned from Oracle. An indicator variable is always associated with a host variable.

You use indicator variables in the VALUES or SET clause to assign nulls to input host variables and in the INTO clause to detect nulls or truncated values in output host variables.

Declaring Indicator Variables

An indicator variable must be explicitly declared in the Declare Section as a 2-byte integer (INTEGER*2) and must not be an Oracle reserved word. In the following example, you declare two indicator variables (the names IESAL and IECOM are arbitrary):

*     Declare host and indicator variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4     ENUM 
          CHARACTER*10  ENAM 
          REAL*4        ESAL 
          REAL*4        ECOM 
          INTEGER*2     IESAL 
          INTEGER*2     IECOM 
      EXEC SQL END DECLARE SECTION 

You can define an indicator variable anywhere in the Declare Section. It need not follow its associated host variable.

Referencing Indicator Variables

In SQL statements, an indicator variable must be prefixed with a colon and appended to its associated host variable. In FORTRAN statements, an indicator variable must not be prefixed with a colon or appended to its associated host variable. An example follows:

*     Retrieve employee data. 
      EXEC SQL SELECT SAL, COMM 
     1    INTO :ESAL, :ECOM:IECOM 
     2    FROM EMP 
     3    WHERE EMPNO = :ENUM 
*     When an indicator variable equals -1, its associated 
*     host variable is null. 
      IF (IECOM .EQ. -1) THEN 
          PAY = ESAL 
      ELSE 
          PAY = ESAL + ECOM 
      END IF 

To improve readability, you can precede any indicator variable with the optional keyword INDICATOR. You must still prefix the indicator variable with a colon. The correct syntax is

:<host_variable> INDICATOR :<indicator_variable>

which is equivalent to

:<host_variable>:<indicator_variable>

You can use both forms of expression in your host program.

Restriction

Indicator variables cannot be used in the WHERE clause to search for nulls. For example, the following DELETE statement triggers an Oracle error at run time:

*     Set indicator variable. 
      IECOM = -1 
      EXEC SQL DELETE FROM EMP WHERE COMM = :ECOM:IECOM

The correct syntax follows:

      EXEC SQL DELETE FROM EMP WHERE COMM IS NULL

Oracle Restrictions

When DBMS=V6, Oracle does not issue an error if you SELECT or FETCH a null into a host variable that is not associated with an indicator variable. However, when DBMS=V7, if you SELECT or FETCH a null into a host variable that has no indicator, Oracle issues the following error message:

ORA-01405: fetched column value is NULL

When precompiling with MODE=ORACLE and DBMS=V7 specified, you can disable the ORA-01405 message by also specifying UNSAFE_NULL=YES on the command line. For more information, see the Programmer's Guide to the Oracle Precompilers.

ANSI Requirements

When MODE=ORACLE, if you SELECT or FETCH a truncated column value into a host variable that is not associated with an indicator variable, Oracle issues the following error message:

ORA-01406: fetched column value was truncated 

However, when MODE={ANSI|ANSI14|ANSI13}, no error is generated. Values for indicator variables are discussed in Chapter 3 of the Programmer's Guide to the Oracle Precompilers.


Host Arrays

Host arrays can boost performance by letting you manipulate an entire collection of data items with a single SQL statement. With few exceptions, you can use host arrays wherever scalar host variables are allowed. And, you can associate an indicator array with any host array.

Declaring Host Arrays

You declare and dimension host arrays in the Declare Section. In the following example, three host arrays are declared, each with an upper dimension bound of 50 (the lower bound defaults to 1):

*     Declare and dimension host arrays. 
      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4     ENUM(50) 
          CHARACTER*10  ENAM(50) 
          REAL*4        ESAL(50) 
      EXEC SQL END DECLARE SECTION  

Restrictions

You cannot specify a lower dimension bound for host arrays. For example, the following declaration is invalid:

*     Invalid dimensioning of host array 
      EXEC SQL BEGIN DECLARE SECTION 
          ... 
          REAL*4  VECTOR(0:10) 
      EXEC SQL END DECLARE SECTION 

Multi-dimensional host arrays are not allowed. Thus, the two-dimensional host array declared in the following example is invalid:

*     Invalid declaration of host array 
      EXEC SQL BEGIN DECLARE SECTION 
          ... 
          REAL*4  MATRIX(50, 100) 
      EXEC SQL END DECLARE SECTION 

You cannot dimension host arrays using the FORTRAN DIMENSION statement. For example, the following usage is invalid:

*    Invalid use of DIMENSION statement 
      EXEC SQL BEGIN DECLARE SECTION 
          REAL*4     ESAL 
          REAL*4     ECOM 
          DIMENSION  ESAL(50), ECOM(50) 
      EXEC SQL END DECLARE SECTION  

Also, you cannot dimension a host array in a COMMON statement.

Referencing Host Arrays

If you use multiple host arrays in a single SQL statement, their dimensions should be the same. This is not a requirement, however, because the Pro*FORTRAN Precompiler always uses the smallest dimension for the SQL operation. In the following example, only 50 rows are INSERTed:

*     Declare host arrays. 
      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4     ENUM(100) 
          CHARACTER*10  ENAM(100) 
          INTEGER*4     DNUM(100) 
          REAL*4        ECOM(50) 
      EXEC SQL END DECLARE SECTION 
      ... 
*     Populate host arrays here. 
      ... 
      EXEC SQL INSERT INTO EMP (EMPNO, ENAME, COMM, DEPTNO) 
     1    VALUES (:ENUM, :ENAM, :ECOM, :DNUM) 

Host arrays must not be subscripted in SQL statements. For example, the following INSERT statement is invalid:

*     Declare host arrays. 
      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4  ENUM(50) 
          REAL*4     ESAL(50) 
          INTEGER*4  DNUM(50) 
      EXEC SQL END DECLARE SECTION 
      ... 
      DO 200  J = 1, 50 
*         Invalid use of host arrays 
          EXEC SQL INSERT INTO EMP (EMPNO, SAL, DEPTNO) 
     1        VALUES (:ENUM(J), :ESAL(J), :DNUM(J)) 
  200 CONTINUE 

You need not process host arrays in a loop. Instead, use unsubscripted array names in your SQL statement. Oracle treats a SQL statement containing host arrays of dimension n like the same statement executed n times with n different scalar variables. For more information, see Chapter 8 of the Programmer's Guide to the Oracle Precompilers.

Using Indicator Arrays

You can use indicator arrays to assign nulls to input host arrays and to detect nulls or truncated values in output host arrays. The following example shows how to INSERT with indicator arrays:

*     Declare host and indicator arrays. 
      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4  ENUM(50) 
          INTEGER*4  DNUM(50) 
          REAL*4     ECOM(50) 
          INTEGER*2  IECOM(50)    -- indicator array 
      EXEC SQL END DECLARE SECTION 
      ... 
*     Populate the host and indicator arrays. To insert 
*     a null into the COMM column, assign -1 to the 
*     appropriate element in the indicator array. 
      ... 
      EXEC SQL INSERT INTO EMP (EMPNO, DEPTNO, COMM) 
     1    VALUES (:ENUM, :DNUM, :ECOM:IECOM) 

The dimension of the indicator array must be greater than, or equal to, the dimension of the host array.


VARCHAR Host Variables

FORTRAN string datatypes are fixed-length. However, Pro*FORTRAN lets you declare a variable-length string pseudotype called VARCHAR.

Declaring VARCHAR Variables

A VARCHAR is a set of three variables declared using the syntax

*     Declare a VARCHAR. 
      EXEC SQL BEGIN DECLARE SECTION 
          VARCHAR*<n>  <VARNAM>, <VARLEN>, <VARARR>
      EXEC SQL END DECLARE SECTION 

where:

n

Is the maximum length of the VARCHAR; n must be in the range 1 through 32765.

VARNAM

Is the name used to reference the VARCHAR in SQL statements; it is called an aggregate name because it identifies a set of variables.

VARLEN

Is a 2-byte signed integer variable that stores the actual length of the string variable.

VARARR

Is the string variable used in FORTRAN statements.

The advantage of using VARCHAR variables is that you can explicitly set and reference VARLEN. With input host variables, Oracle reads the value of VARLEN and uses that many characters of VARARR. With output host variables, Oracle sets VARLEN to the length of the character string stored in VARARR.

You can declare a VARCHAR only in the Declare Section. In the following example, you declare a VARCHAR named EJOB with a maximum length of 15 characters:

*     Declare a VARCHAR. 
      EXEC SQL BEGIN DECLARE SECTION 
          ... 
          VARCHAR*15  EJOB, EJOBL, EJOBA 
      EXEC SQL END DECLARE SECTION 

The precompiler expands this declaration to

*     Expanded VARCHAR declaration 
      INTEGER*2  EJOBL 
      LOGICAL*1  EJOBA(15) 
      INTEGER*2  SQXXX(2) 
      EQUIVALENCE (SQXXX(1), EJOBL), (SQXXX(2), EJOBA(1)) 

where SQXXX is an array generated by the precompiler and XXX denotes three arbitrary characters. Notice that the aggregate name EJOB is not declared. The EQUIVALENCE statement forces the compiler to store EJOBL and EJOBA contiguously.

Referencing VARCHAR Variables

In SQL statements, you reference a VARCHAR variable using the aggregate name prefixed with a colon, as the following example shows:

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          ... 
          INTEGER*4   ENUM 
          VARCHAR*15  EJOB, EJOBL, EJOBA 
      EXEC SQL END DECLARE SECTION 
      ... 
      EXEC SQL SELECT JOB 
     1    INTO :EJOB 
     2    FROM EMP 
     3    WHERE EMPNO = :ENUM 

After the query executes, EJOBL holds the actual length of the character string retrieved from the database and stored in EJOBA. In FORTRAN statements, you reference VARCHAR variables using the length variable and string variable names, as this example shows:

*     Display job title. 
      WRITE (*, 5200) (EJOBA(J), J = 1, EJOBL) 
 5200 FORMAT (15A1) 
      ... 

Overcoming the Length Limit

Recall that the length variable of a VARCHAR must be a 2-byte integer. FORTRAN provides a 2-byte signed integer datatype, which can represent numbers in the range -32768 through 32767. However, FORTRAN lacks a 2-byte unsigned integer datatype, which can represent numbers in the range 0 through 65535. Therefore, the maximum length of a VARCHAR character string is 32765 bytes (32767 minus 2 for the length variable).

With other host languages, the maximum length of a VARCHAR character string is 65533 bytes. If you want to use 65533-byte VARCHAR variables, try the technique shown in the following example:

*     Declare a VARCHAR. 
      EXEC SQL BEGIN DECLARE SECTION 
          ... 
          VARCHAR*65533  BUF, BUFL, BUFA 
      EXEC SQL END DECLARE SECTION 
      ... 
*     Equivalence two 2-byte integers to one 4-byte integer. 
      INTEGER*2  INT2(2) 
      INTEGER*4  INT4 
      EQUIVALENCE (INT2(1), INT4) 
      INTEGER*4  I 
      ... 
      INT4 = 65533 
*     Set the VARCHAR length variable equal to the 
*     equivalenced value of INT4. 
      BUFL = INT2(1) 
      DO 100 I = 1, 65533 
          BUFA(I) = 32 
  100 CONTINUE
      EXEC SQL INSERT INTO LONG_TABLE VALUES (:BUF) 
      ... 
      BUFL = 0 
      EXEC SQL SELECT COL1 INTO :BUF FROM LONG_TABLE 
      INT2(1) = BUFL 
      ... 

Note: The way integers are stored varies from system to system. On some systems, the least significant digits are stored at the low address; on other systems they are stored at the high address. In the last example, this determines whether the length is stored in INT2(1) or INT2(2).


Handling Character Data

This section explains how the Pro*FORTRAN Precompiler handles character host variables. There are two types of character host variables:

Do not confuse VARCHAR, which is a host variable data structure supplied by the precompiler, with VARCHAR2, which is an Oracle column datatype for variable-length character strings.

Effects of the MODE Option

The MODE option determines how the Pro*FORTRAN Precompiler treats data in character arrays and strings. The MODE option allows your program to use ANSI fixed-length strings or to maintain compatibility with previous versions of the Oracle Server and the Pro*FORTRAN Precompiler.

With respect to character handling, MODE={ANSI14|ANSI13} is equivalent to MODE=ORACLE. The MODE option affects character data on input (from host variables to Oracle) and on output (from Oracle to host variables).

Note: The MODE option does not affect the way Pro*FORTRAN handles VARCHAR host variables.

CHARACTER*n

Character variables are declared using the CHARACTER*n datatype. These types of variables handle character data based on their roles as input or output variables.

On Input

When MODE=ORACLE, the program interface strips trailing blanks before sending the value to the database. If you insert into a fixed-length CHAR column, Oracle re-appends trailing blanks up to the length of the database column. However, if you insert into a variable-length VARCHAR2 column, Oracle never appends blanks.

When MODE=ANSI, trailing blanks are never stripped.

Make sure that the input value is not trailed by extraneous characters. For example, nulls are not stripped and are inserted into the database. Normally, this is not a problem because when a value is READ into or assigned to a CHARACTER*n variable, FORTRAN appends blanks up to the length of the variable.

The following example illustrates the point:

*     Declare host variables 
      EXEC SQL BEGIN DECLARE SECTION 
          CHARACTER    ENAM *10, EJOB *8 
          ... 
      EXEC SQL END DECLARE SECTION 
      ... 
      WRITE (*, 300) 
  300 FORMAT (/, '$Employee name? ') 
*     Assume the name 'MILLER' is entered 
      READ (*, 400) 
  400 FORMAT (A10) 
      EJOB = 'SALES' 
      EXEC SQL INSERT INTO emp (empno, ename, deptno, job) 
          VALUES (1234, :ENAM, 20, :EJOB)

If you precompile the last example with MODE=ORACLE and the target database columns are VARCHAR2, the program interface strips the trailing blanks on input and inserts just the 6-character string "MILLER" and the 5-character string "SALES" into the database. However, if the target database columns are CHAR, the strings are blank-padded to the width of the columns.

If you precompile the last example with MODE=ANSI and the JOB column is defined as CHAR(10), the value inserted into that column is "SALES#####" (five trailing blanks). However, if the JOB column is defined as VARCHAR2(10), the value inserted is "SALES###" (three trailing blanks) because the host variable is a CHARACTER*8. This might not be what you want, so be careful.

On Output

The MODE option has no effect on output to character variables. When you use a CHARACTER*n variable as an output host variable, Oracle blank-pads it. In our example, when your program fetches the string "MILLER" from the database, ENAM contains the value "MILLER####" (with four trailing blanks). This character string can be used without change as input to another SQL statement.

VARCHAR Variables

VARCHAR variables handle character data based on their roles as input or output variables

On Input

When you use a VARCHAR variable as an input host variable, your program must assign values to the length and string variables, as shown in the following example:

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4   ENUM 
          VARCHAR*15  EJOB, EJOBL, EJOBA 
          INTEGER*2   IEJOB 
          INTEGER*4   DNUM 
      EXEC SQL END DECLARE SECTION 
      ... 
      WRITE (*, 4300) 
 4300 FORMAT (/, ' Enter job title: ') 
      READ (*, 4400) EJOBA 
 4400 FORMAT (15A1) 
*     Scan backward for last non-blank character, then 
*     set length to that position. If input is all blank, 
*     set indicator variable to -1 to indicate a null. 
      DO 5000 J = 15, 1, -1 
          IF (EJOBA(J) .NE. ' ') GOTO 5100 
 5000 CONTINUE 
      J = 0 
 5100 IF (J .EQ. 0) THEN 
          IEJOB = -1 
      ELSE 
          IEJOB = 0 
      END IF 
      EJOBL = J 
      EXEC SQL INSERT INTO EMP (EMPNO, JOB, DEPTNO) 
     1    VALUES (:ENUM, :EJOB:IEJOB, :DNUM) 

On Output

When you use a VARCHAR variable as an output host variable, Oracle sets the length variable. An example follows:

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4   ENUM 
          VARCHAR*15  EJOB, EJOBL, EJOBA 
          INTEGER*4   ESAL 
      EXEC SQL END DECLARE SECTION 
      ... 
      EXEC SQL SELECT JOB, SAL INTO :EJOB, :ESAL FROM EMP 
     1    WHERE EMPNO = :ENUM 
      ... 
      IF (EJOBL .EQ. 0) GOTO ... 
      ... 

An advantage of VARCHAR variables over fixed-length strings is that the length of the value returned by Oracle is available right away. With fixed-length strings, to get the length of the value, your program must count the number of characters. (The intrinsic function LEN returns the length of a string including blanks, not its current length.)


The Oracle Datatypes

Oracle recognizes two kinds of datatypes: internal and external. Internal datatypes specify how Oracle stores data in database columns. Oracle also uses internal datatypes to represent database pseudocolumns. An external datatype specifies how data is stored in a host variable. For descriptions of the Oracle datatypes, see Chapter 3 of the Programmer's Guide to the Oracle Precompilers.

Internal Datatypes

For values stored in database columns, Oracle uses the following internal datatypes:

Name Code Description
CHAR 96 <= 255-byte, fixed-length string
DATE 12 7-byte, fixed-length date/time value
LONG 8 <= 2147483647-byte, variable-length string
LONG RAW 24 <= 2147483647-byte, variable-length binary data
MLSLABEL 105 <= 5-byte, variable-length binary label
NUMBER 2 fixed or floating point number
RAW 23 <= 255-byte, variable-length binary data
ROWID 11 fixed-length binary value
VARCHAR2 1 <= 2000-byte, variable-length string
Table 1 - 5. Internal Datatypes



These internal datatypes can be quite different from FORTRAN datatypes. For example, FORTRAN has no equivalent to the NUMBER datatype, which was specially designed for portability and high precision.

External Datatypes

As the table below shows, the external datatypes include all the internal datatypes plus several datatypes found in other supported host languages. For example, the STRING external datatype refers to a C null-terminated string. You use the datatype names in datatype equivalencing, and you use the datatype codes in dynamic SQL Method 4.

Name Code Description
CHAR 1 96 <= 65535-byte, variable-length character string (1) <= 65535-byte, fixed-length character string (1)
CHARF 96 <= 65535-byte, fixed-length character string
CHARZ 97 <= 65535-byte, fixed-length, null-terminated string (2)
DATE 12 7-byte, fixed-length date/time value
DECIMAL 7 COBOL packed decimal
DISPLAY 91 COBOL numeric character string
FLOAT 4 4-byte or 8-byte floating-point number
INTEGER 3 2-byte or 4-byte signed integer
LONG 8 <= 2147483647-byte, fixed-length string
LONG RAW 24 <= 217483647-byte, fixed-length binary data
LONG VARCHAR 94 <= 217483643-byte, variable-length string
LONG VARRAW 95 <= 217483643-byte, variable-length binary data
MLSLABEL 106 2..5-byte, variable-length binary data
NUMBER 2 integer or floating-point number
RAW 23 <= 65535-byte, fixed-length binary data (2)
ROWID 11 (typically) 13-byte, fixed-length binary value
STRING 5 <= 65535-byte, null-terminated character string (2)
UNSIGNED 68 2-byte or 4-byte unsigned integer
VARCHAR 9 <= 65533-byte, variable-length character string
VARCHAR2 1 <= 65535-byte, variable-length character string (2)
VARNUM 6 variable-length binary number
VARRAW 15 <= 65533-byte, variable-length binary data
Table 1 - 6. External Datatypes

Notes:


Datatype Conversion

At precompile time, an external datatype is assigned to each host variable in the Declare Section. For example, the precompiler assigns the FLOAT external datatype to host variables of type REAL. At run time, the datatype code of every host variable used in a SQL statement is passed to Oracle. Oracle uses the codes to convert between internal and external datatypes.

Before assigning a SELECTed column value to an output host variable, Oracle must convert the internal datatype of the source column to the datatype of the host variable. Likewise, before assigning or comparing the value of an input host variable to a column, Oracle must convert the external datatype of the host variable to the internal datatype of the target column.

Conversions between internal and external datatypes follow the usual data conversion rules. For example, you can convert a CHAR value of "1234" to a INTEGER*2 value. You cannot, however, convert a CHAR value of "65543" (number too large) or "10F" (number not decimal) to a INTEGER*2 value. Likewise, you cannot convert a CHARACTER*n value that contains alphabetic characters to a NUMBER value.

For more information about datatype conversion, see Chapter 3 of the Programmer's Guide to the Oracle Precompilers.


Datatype Equivalencing

Datatype equivalencing lets you control the way Oracle interprets input data and the way Oracle formats output data. You can equivalence supported FORTRAN datatypes to Oracle external datatypes on a variable-by-variable basis.

Host Variable Equivalencing

By default, the Pro*FORTRAN Precompiler assigns a specific external datatype to every host variable. The default assignments are shown in Table 1 - 7. For more information about datatype equivalencing, see Chapter 3 in the Programmer's Guide to the Oracle Precompilers.

Host Type External Type Code
BYTE var LOGICAL var LOGICAL*1 var LOGICAL*2 var LOGICAL*4 var
CHARACTER var CHARACTER var*n CHARACTER*n var CHARACTER(*) var
VARCHAR2 CHARF 1 (when MODE != ANSI) 96 (when MODE=ANSI)
VARCHAR*n VARCHAR 9
INTEGER var INTEGER*2 var INTEGER*4 var INTEGER 3
REAL var REAL*4 var REAL*8 var DOUBLE PRECISION var FLOAT 4
Table 1 - 7. Host Variable Equivalencing



With the VAR statement, you can override the default assignments by equivalencing host variables to Oracle external datatypes in the Declare Section. The syntax you use is

      EXEC SQL 
          VAR <host_variable>
          IS <ext_type_name> [({<length> | <precision>,<scale>})]

where host_variable is an input or output host variable (or host array) declared earlier in the Declare Section, ext_type_name is the name of a valid external datatype, and length is an integer literal specifying a valid length in bytes.

When ext_type_name is FLOAT, use length; when ext_type_name is DECIMAL, you must specify precision and scale instead of length.

Host variable equivalencing is useful in several ways. For example, you can use it when you want Oracle to store but not interpret data. Suppose you want to store a host array of 4-byte integers in a RAW database column. Simply equivalence the host array to the RAW external datatype, as follows:

      EXEC SQL BEGIN DECLARE SECTION 
          INTEGER*4  ENUM(50) 
          ... 
*     Reset default datatype (INTEGER) to RAW. 
          EXEC SQL VAR ENUM IS RAW (200); 
      EXEC SQL END DECLARE SECTION 
      ... 

With host arrays, the length you specify must match the buffer size required to hold the array. In the last example, you specified a length of 200, which is the buffer size required to hold 50 4-byte integers.

For more information about datatype equivalencing, see Chapter 3 in the Programmer's Guide to the Oracle Precompilers.


Embedding PL/SQL

The Pro*FORTRAN Precompiler treats a PL/SQL block like a single embedded SQL statement. So, you can place a PL/SQL block anywhere in a host program that you can place a SQL statement.

To embed a PL/SQL block in your host program, declare the variables to be shared with PL/SQL and bracket the PL/SQL block with the EXEC SQL EXECUTE and END-EXEC keywords.

Host Variables

Inside a PL/SQL block, host variables are global to the entire block and can be used anywhere a PL/SQL variable is allowed. Like host variables in a SQL statement, host variables in a PL/SQL block must be prefixed with a colon. The colon sets host variables apart from PL/SQL variables and database objects.

VARCHAR Variables

When entering a PL/SQL block, Oracle automatically checks the length fields of VARCHAR host variables. So, you must set the length fields before the block is entered. For input variables, set the length field to the length of the value stored in the string field. For output variables, set the length field to the maximum length allowed by the string field.

Indicator Variables

In a PL/SQL block, you cannot refer to an indicator variable by itself; it must be appended to its associated host variable. Also, if you refer to a host variable with its indicator variable, you must always refer to it that way in the same block.

Handling Nulls

When entering a block, if an indicator variable has a value of -1, PL/SQL automatically assigns a null to the host variable. When exiting the block, if a host variable is null, PL/SQL automatically assigns a value of -1 to the indicator variable.

Handling Truncated Values

PL/SQL does not raise an exception when a truncated string value is assigned to a host variable. However, if you use an indicator variable, PL/SQL sets it to the original length of the string.

SQLCHECK

You must specify SQLCHECK=SEMANTICS when precompiling a program with an embedded PL/SQL block. You must also use the USERID option. For more information, see Chapter 6 of the Programmer's Guide to the Oracle Precompilers.


Cursor Variables

Starting with Release 1.7 of the Pro*FORTRAN Precompiler, you can use cursor variables in your Pro*FORTRAN programs to process multi-row queries using static embedded SQL. A cursor variable identifies a cursor reference that is defined and opened on the Oracle7 Server, Release 7.2 or later, using PL/SQL. See the PL/SQL User's Guide and Reference for complete information about cursor variables.

The advantages of cursor variables are

Declaring a Cursor Variable

You declare a Pro*FORTRAN cursor variable using the SQLCURSOR pseudotype. For example:

      EXEC SQL BEGIN DECLARE SECTION
          ...
          SQLCURSOR CURVAR
          ...
      EXEC SQL END DECLARE SECTION

A SQLCURSOR variable is implemented using a FORTRAN INTEGER*4 array in the code that Pro*FORTRAN generates. A cursor variable is just like any other Pro*FORTRAN host variable.

Allocating a Cursor Variable

Before you can OPEN or FETCH a cursor variable, you must allocate it using the Pro*FORTRAN ALLOCATE command. For example, to allocate the cursor variable CURVAR that was declared in the previous section, write the following statement:

      EXEC SQL ALLOCATE :CURVAR 

Allocating a cursor variable does not require a call to the server, either at precompile time or at run time.

Warning: Allocating a cursor variable does cause heap memory to be used. For this reason, avoid allocating a cursor variable in a program loop.

Opening a Cursor Variable

You must use an embedded anonymous PL/SQL block to open a cursor variable on the Oracle Server. The anonymous PL/SQL block may open the cursor either indirectly by calling a PL/SQL stored procedure that opens the cursor (and defines it in the same statement) or directly from the Pro*FORTRAN program.

Opening Indirectly through a Stored PL/SQL Procedure

Consider the following PL/SQL package stored in the database:

CREATE PACKAGE demo_cur_pkg AS
    TYPE EmpName IS RECORD (name VARCHAR2(10));
    TYPE cur_type IS REF CURSOR RETURN EmpName;
    PROCEDURE open_emp_cur (
               curs IN OUT curtype,
               dept_num IN NUMBER);
END;
CREATE PACKAGE BODY demo_cur_pkg AS
    CREATE PROCEDURE open_emp_cur (
               curs IN OUT curtype,
               dept_num IN NUMBER) IS
    BEGIN
        OPEN curs FOR
            SELECT ename FROM emp
                WHERE deptno = dept_num
                ORDER BY ename ASC;
    END;
END;

After this package has been stored, you can open the variable curs by calling the open_emp_cur stored procedure from your Pro*FORTRAN program, and FETCH from the cursor variable ECUR in the program. For example:

      EXEC SQL BEGIN DECLARE SECTION
          SQLCURSOR    ECUR
          INTEGER*4    DNUM
          VARCHAR*10   ENAM, ENAML, ENAMA
      EXEC SQL END DECLARE SECTION
      ...
*     Allocate the cursor variable.
      EXEC SQL ALLOCATE :ECUR
      ...
      DNUM=30
*     Open the cursor on the Oracle7 Server.
      EXEC SQL EXECUTE
     1    BEGIN
     2        demo_cur_pkg.open_emp_cur(:ECUR, :DNUM);
     3    END;
     4 END-EXEC
      EXEC SQL WHENEVER NOTFOUND DO CALL SIGNOFF
*
 1000 EXEC SQL FETCH :ECUR INTO :ENAM
      PRINT *, "Employee Name: ", ENAM
      GOTO 1000
      ...

Opening Directly from Your Pro*FORTRAN Application

To open a cursor using a PL/SQL anonymous block in a Pro*FORTRAN program, define the cursor in the anonymous block. Consider the following example:

      EXEC SQL EXECUTE
     1    BEGIN
     2        OPEN :ECUR FOR SELECT ENAME FROM EMP
     3            WHERE DEPTNO = :DNUM;
     4    END;
     5 END-EXEC
      ...

Return Types

When you define a reference cursor (REF CURSOR) in a PL/SQL stored procedure, you must declare the type that the cursor returns. The return types allowed for reference cursors are described in the PL/SQL User's Guide and Reference.

Fetching from a Cursor Variable

Use the embedded SQL FETCH .... INTO command to retrieve the rows SELECTed when you opened the cursor variable. For example:

      EXEC SQL FETCH :ECUR INTO :EINFO:IEINFO

Before you can FETCH from a cursor variable, the variable must be initialized and opened. You cannot FETCH from an unopened cursor variable.

Closing a Cursor Variable

Use the embedded SQL CLOSE command to close a cursor variable. For example:

      EXEC SQL BEGIN DECLARE SECTION
*     Declare the cursor variable.
          SQLCURSOR   ECUR
          ...
      EXEC SQL END DECLARE SECTION
*     Allocate and open the cursor variable, then
*     fetch one or more rows.
      ...
*     Close the cursor variable.
      EXEC SQL CLOSE :ECUR

Restrictions

The following restrictions apply to the use of cursor variables:

Error Conditions

Do not perform any of the following operations:

These operations on cursor variables result in errors.

Sample Programs

The following sample programs -- a SQL script (SAMPLE11.SQL) and a Pro*FORTRAN program (SAMPLE11.PFO) -- demonstrate how you can use cursor variables in Pro*FORTRAN.

SAMPLE11.SQL

Following is the PL/SQL source code for a creating a package that declares and opens a cursor variable:

CONNECT SCOTT/TIGER
CREATE OR REPLACE PACKAGE emp_demo_pkg AS
    TYPE emp_cur_type IS REF CURSOR RETURN emp%ROWTYPE;
    PROCEDURE open_cur (
        cursor   IN OUT emp_cur_type,
        dept_num IN     number);
END emp_demo_pkg;
/  
CREATE OR REPLACE PACKAGE BODY emp_demo_pkg AS
    PROCEDURE open_cur (
        cursor   IN OUT emp_cur_type, 
        dept_num IN     number) IS
    BEGIN 
        OPEN cursor FOR SELECT * FROM emp
        WHERE deptno = dept_num
        ORDER BY ename ASC;
    END;
END emp_demo_pkg;
/

SAMPLE11.PFO

Following is a Pro*FORTRAN sample program that uses the cursor declared in the SAMPLE11.SQL example to fetch employee names, salaries, and commissions from the EMP table.

      PROGRAM SAMPLE11
      EXEC SQL BEGIN DECLARE SECTION
*     Declare the cursor variable.
          SQLCURSOR        ECUR
*         EMPINFO
              INTEGER      ENUM
              CHARACTER*10 ENAM
              VARCHAR*9    EJOB, EJOBL, EJOBA
              INTEGER      EMGR
              VARCHAR*10   EDAT, EDATL, EDATA
              REAL         ESAL
              REAL         ECOM
              INTEGER      EDEP
*         EMPINFO INDICATORS
              INTEGER*2    IENUM
              INTEGER*2    IENAM
              INTEGER*2    IEJOB
              INTEGER*2    IEMGR
              INTEGER*2    IEDAT
              INTEGER*2    IESAL
              INTEGER*2    IECOM
              INTEGER*2    IEDEP
      EXEC SQL END DECLARE SECTION
      EXEC SQL INCLUDE SQLCA
      COMMON /CURSOR/ ECUR
      EXEC SQL WHENEVER SQLERROR DO CALL SQLERR

*     LOG ON TO ORACLE.
      CALL LOGON

*     Initialize the cursor variable.
      EXEC SQL ALLOCATE :ECUR
      TYPE 1000
 1000 FORMAT (/, 'Enter department number (0 to exit):  ', $)
      ACCEPT 1100, EDEP
 1100 FORMAT (I10)
      IF (EDEP .LE. 0) THEN
      CALL SIGNOFF
      ENDIF

*     Open the cursor by calling a PL/SQL stored procedure.
      EXEC SQL EXECUTE
     1    BEGIN
     2        emp_demo_pkg.open_cur (:ECUR, :EDEP);
     3    END;
     4 END-EXEC
      PRINT 1200, EDEP
 1200 FORMAT (/, 'For department ', I, ':',/)
      PRINT 1300
 1300 FORMAT (/, 'EMPLOYEE    SALARY      COMMISSION',
     +        /, '----------  ----------  ----------')

*     Fetch data from the cursor into the host variables.
 2000 EXEC SQL WHENEVER NOT FOUND DO CALL SIGNOFF
      EXEC SQL FETCH :ECUR
     1    INTO :ENUM:IENUM,
     2         :ENAM:IENAM,
     3         :EJOB:IEJOB,
     4         :EMGR:IEMGR,
     5         :EDAT:IEDAT,
     6         :ESAL:IESAL,
     7         :ECOM:IECOM,
     8         :EDEP:IEDEP

*     Check for commission and print results.
      IF (IECOM .EQ. 0) THEN
          PRINT 2100, ENAM, ESAL, ECOM
 2100     FORMAT (A10, 2X, F10.2, 2X, F10.2)
      ELSE
          PRINT 2200, ENAM, ESAL
 2200     FORMAT (A10, 2X, F10.2, 2X, '       N/A')
      ENDIF
      GOTO 2000
      END

*     LOG ON TO ORACLE.
      SUBROUTINE LOGON
      EXEC SQL BEGIN DECLARE SECTION
          CHARACTER*10  UID
          CHARACTER*10  PWD
      EXEC SQL END DECLARE SECTION
      EXEC SQL INCLUDE SQLCA
      UID = 'SCOTT'
      PWD = 'TIGER'
      EXEC SQL CONNECT :UID IDENTIFIED BY :PWD
      PRINT 3000, UID
 3000 FORMAT (/, 'CONNECTED TO ORACLE AS USER:  ', A)
      END
*     Close the cursor variable.
      SUBROUTINE SIGNOFF
      EXEC SQL BEGIN DECLARE SECTION
          SQLCURSOR        ECUR
      EXEC SQL END DECLARE SECTION
      EXEC SQL INCLUDE SQLCA
      COMMON /CURSOR/ ECUR
      EXEC SQL CLOSE :ECUR
      PRINT 4100
 4100 FORMAT (/, 'HAVE A GOOD DAY.', /)
      EXEC SQL COMMIT WORK RELEASE
      STOP
      END

      SUBROUTINE SQLERR
      EXEC SQL INCLUDE SQLCA
      EXEC SQL WHENEVER SQLERROR CONTINUE
      PRINT*, ' '
      PRINT *, 'ORACLE ERROR DETECTED: '
      PRINT '(70A1)', SQLEMC
      PRINT*, ' '
      EXEC SQL ROLLBACK WORK RELEASE
      STOP
      END


Connecting to Oracle

Your Pro*FORTRAN program must log on to Oracle before querying or manipulating data. To log on, you use the CONNECT statement, as in

*     Log on to Oracle. 
      EXEC SQL CONNECT :UID IDENTIFIED BY :PWD 

where UID and PWD are CHARACTER or VARCHAR host variables. Alternatively, you can use the statement

*     Log on to Oracle. 
      EXEC SQL CONNECT :UIDPWD 

where the host variable UIDPWD contains your username and password separated by a slash (/).

The CONNECT statement must be the first SQL statement executed by the program. That is, other executable SQL statements can positionally, but not logically, precede the CONNECT statement.

To supply the Oracle username and password separately, you define two host variables in the Declare Section as character strings or VARCHAR variables. If you supply a userid containing both username and password, only one host variable is needed.

Make sure to set the username and password variables before the CONNECT is executed or it will fail. Your program can prompt for the values or you can hard code them as follows:

*     Declare host variables.
      EXEC SQL BEGIN DECLARE SECTION
          CHARACTER*5  UID
          CHARACTER*5  PWD
          ...
      EXEC SQL END DECLARE SECTION
      UID = 'SCOTT'
      PWD = 'TIGER'
*     Handle logon errors. 
      EXEC SQL WHENEVER SQLERROR GOTO ...
      EXEC SQL CONNECT :UID IDENTIFIED BY :PWD

However, you cannot hard code a username and password into the CONNECT statement or use quoted literals. For example, both of the following statements are invalid:

*     Invalid CONNECT statements 
      EXEC SQL CONNECT SCOTT IDENTIFIED BY TIGER 
      EXEC SQL CONNECT 'SCOTT' IDENTIFIED BY 'TIGER' 

Automatic Logons

You can automatically log on to the Oracle using the following userid:

<prefix><username> 

where prefix is the value of the Oracle initialization parameter OS_AUTHENT_PREFIX (the default value is OPS$) and username is your operating system user or task name. For example, if the prefix is OPS$, your user name is TBARNES, and OPS$TBARNES is a valid Oracle userid, you log on to Oracle as user OPS$TBARNES.

To take advantage of the automatic logon feature, you simply pass a slash (/) character to the precompiler, as follows:

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          ... 
          CHARACTER*1  ORAID 
      EXEC SQL END DECLARE SECTION 
      ORAID = '/' 
       EXEC SQL CONNECT :ORAID 

This automatically connects you as user OPS$username. For example, if your operating system username is RHILL, and OPS$RHILL is a valid Oracle username, connecting with a slash (/) automatically logs you on to Oracle as user OPS$RHILL.

You can also pass a character string to the precompiler. However, the string cannot contain trailing blanks. For example, the following CONNECT statement will fail:

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          ... 
          CHARACTER*5  ORAID 
      EXEC SQL END DECLARE SECTION 
      ORAID = '/    ' 
      EXEC SQL CONNECT :ORAID  

For more information about operating system authentication, see the Oracle7 Server Administrator's Guide.

Concurrent Logons

Your application can use SQL*Net to access any combination of remote and local databases concurrently or make multiple connections to the same database. In the following example, you connect to two non-default databases concurrently:

*     Declare host variables. 
      EXEC SQL BEGIN DECLARE SECTION 
          CHARACTER*5   UID
          CHARACTER*5   PWD 
          CHARACTER*12  DBSTR1 
          CHARACTER*12  DBSTR2 
      EXEC SQL END DECLARE SECTION 
      UID = 'SCOTT' 
      PWD = 'TIGER' 
      DBSTR1 = 'NEWYORK' 
      DBSTR2 = 'BOSTON' 
*     Give each database connection a unique name. 
      EXEC SQL DECLARE DBNAM1 DATABASE 
      EXEC SQL DECLARE DBNAM2 DATABASE 
*     Connect to the two non-default databases. 
      EXEC SQL CONNECT :UID IDENTIFIED BY :PWD 
     1    AT DBNAM1 USING :DBSTR1 
      EXEC SQL CONNECT :UID IDENTIFIED BY :PWD 
     1    AT DBNAM2 USING :DBSTR2 

The string syntax in DBSTR1 and DBSTR2 depends on your network driver and how it is configured. DBNAM1 and DBNAM2 name the non-default connections; they can be undeclared identifiers or host variables.

For step-by-step instructions on connecting to Oracle via SQL*Net, see Chapter 3 in the Programmer's Guide to the Oracle Precompilers




Go to previous file in sequence Go to next file in sequence
Prev Next
Oracle
Copyright © 1996 Oracle Corporation.
All Rights Reserved.
Go to Product Documentation Library
Library
Go to books for this product
Product
Go to Contents for this book
Contents
Go to Index
Index