PreviousDB2 Reserved KeywordsNext

Chapter 9: COBSQL

COBSQL is an integrated preprocessor designed to work with COBOL precompilers supplied by relational database vendors. It is intended for use with:

You should use COBSQL if you are already using either of these precompilers with an earlier version of a MERANT Micro Focus COBOL product and want to migrate your application(s) to Server Express, or if you are creating applications that will be deployed on UNIX platforms and need to access either Oracle or Sybase relational databases.

For any other type of embedded SQL application development, we recommend that you use OpenESQL.


Note: The Oracle precompiler version 1.8 does not support nested programs. COBSQL does not support Object Oriented COBOL syntax (OO COBOL). If you want to use OO COBOL, therefore, you must use OpenESQL.


9.1 Overview

You can access the SQL functions offered by the Oracle, Sybase or Informix Database Management System (DBMS) by embedding SQL statements within your COBOL program in the form:

EXEC SQL
   SQL statement
END-EXEC

and then using the Oracle, Sybase or Informix precompiler to process the embedded SQL before passing the program to the COBOL Compiler. The database precompiler replaces embedded SQL statements with the appropriate calls to database services. Other additions are made to the source code to bind COBOL host variables to the SQL variable names known to the database system.

The advantage of embedding SQL in this way is that you do not need to know the format of individual database routine calls. The disadvantage is that the source code that you see when you animate your program is that output by the precompiler and not the original embedded SQL. You can overcome this disadvantage by using COBSQL.

COBSQL provides an integrated interface between MERANT Micro Focus COBOL and the third-party standalone precompiler, enabling you to animate a program containing EXEC SQL statements and display your original source code rather than the code produced by the precompiler.

This chapter shows you how you can use COBSQL in conjunction with either the Oracle, Sybase or Informix precompiler to compile and animate your programs.

9.2 Operation

To use COBSQL, specify the PREPROCESS"COBSQL" Compiler directive when you compile your program. All directives following it are passed from the Compiler to COBSQL. You can specify Compiler directives by using $SET statements in your program or via the cob command line.

To terminate the directives to be passed to COBSQL, you must use the ENDP COBOL directive. You can do this by making the following changes to the directives:

C"preprocess(Cobsql) csqltype=oracle end-c comp5=yes endp"

When using Server Express, END-C and ENDP have the following effect:

9.2.1 Specifying Directives

You specify directives to COBSQL as if they were Compiler directives, but you must put them after the directive PREPROCESS"COBSQL".

It is also possible to add the Cobsql directives to the standard Server Express directives file cobol.dir.


Notes:


Alternatively, you can put COBSQL and precompiler directives in a file, cobsql.dir. This file should reside either in the current directory or in a directory specified in $COBDIR. COBSQL searches the current directory and then along the COBDIR path for a cobsql.dir file. Once COBSQL finds a cobsql.dir file, it stops searching. So, if you have a cobsql.dir file in the current directory, the COBDIR path is not searched.


Notes:


COBSQL processes cobsql.dir first and then any directives specified via the cob command line.

A number of the directives can be reversed by placing NO in front of them, for example, DISPLAY can be reversed using NODISPLAY. All the directives in the lists below that can have NO placed in front of them are marked with an asterisk. By default, the NO version of a directive is set.

You can specify shortened versions of some of the directives. If applicable, the shortened version of a directive is shown in the lists below, immediately after the full length version.

Some directives can be passed to COBSQL by the COBOL Compiler (see the section COBOL Directives below), removing the need to specify common directives more than once. Directives that can be retrieved from the COBOL Compiler are processed before COBSQL directives.

For example, in the following command line:

cob -V -k testprog.pco -C"p(cobsql) csqlt==ora makesyn end-c
    xref==yes mode==ansi endp omf(gnt) list()"

9.2.2 COBSQL Directives

The following is a list of the COBSQL directives:

Directive
Description
COBSQLTYPE
CSQLT
Specifies which precompiler to use (ORACLE, SYBASE or INFORMIX-NEW); for example, COBSQLTYPE=ORACLE .
CSTOP*
CSP
Forces COBSQL to load the stop run module that performs a rollback if the application terminates abnormally.
DEBUGFILE*
DEB
Creates a debug (.deb) file.
DISPLAY*
DIS
Displays precompiler statistics. Should only be used when initially verifying that COBSQL is correctly calling the standalone precompiler.
END-COBSQL
END-C
END
Signals the end of COBSQL directives; remaining directives, if any, are passed to the precompiler.
KEEPCBL Saves precompiled source file (.cbl).
MAKESYN Converts all COMP host variables to COMP-5 host variables. The default situation, if MAKESYN is not set, is that all variables (not just host variables) are converted from COMP to COMP-5.
NOMAKESYN No conversion of COMP-5 variables or host variables is carried out.
SQLDEBUG Creates a number of files that can be used by MERANT to debug COBSQL. These files include the output file from the precompiler (normally this has a .cbl extension), the listing file produced by the precompiler (this has a .lis extension), plus a COBSQL debug file which has a .sdb extension. SQLDEBUG will also turn on KEEPCBL and TRACE.
TRACE* Creates a trace file (.trc).
VERBOSE Displays all precompiler messages and gives status updates as the program is processed. You should only use this when initially verifying that COBSQL is calling the standalone precompiler correctly.

9.2.3 COBOL Directives

The following is a list of the COBOL directives:

Directive
Description
BELL* Controls whether COBSQL sounds the bell when an error occurs.
BRIEF* Controls whether COBSQL shows SQL error text as well as the error number.
CONFIRM* Displays accepted/rejected COBSQL directives.
LIST* Saves the precompiler listing file (.lis).
WARNING* Determines the lowest severity of SQL errors to report.

9.3 Using the CP Preprocessor to Expand Copyfiles

The complete set of methods used within COBOL to manipulate copyfiles is not available with database precompilers and COBSQL itself cannot handle included copyfiles. These problems can be overcome, however, by using the MERANT Micro Focus Copyfile Preprocessor (CP).

CP is a preprocessor that has been written to provide other preprocessors, such as COBSQL, with a mechanism for handling copyfiles. CP follows the same rules as the COBOL Compiler for handling copyfiles so any copyfile-related Compiler directives are automatically picked up and copyfiles are searched for using the COBCPY environment variable. CP will also expand the following statements:

EXEC SQL
   INCLUDE ...
END-EXEC

Oracle uses .pco and .cob extensions, Sybase uses .pco and .cbl extensions and Informix uses .eco, .cob and .mf2 extensions.

Oracle and Sybase
For CP to resolve copyfiles and include statements correctly, use the following COBOL Compiler directives for Sybase and Oracle:

copyext (pco,cbl,cpy,cob) osext(pco)

Informix
For Informix, use:

copyext (eco,mf2,cbl,cpy,cob) osext(eco)

COBSQL can call CP to expand copyfiles before the database precompiler is invoked. This means that all the copy-related commands are already resolved so that it appears to the database precompiler that a single source file is being used.

The other advantage of using CP is that it makes copyfiles visible when animating.

When CP sees an INCLUDE SQLCA statement, it does the following:


Note: Using the file sqlca.cpy can result in errors when the program is run.


You can specify the CP preprocessor's SY directive to prevent CP expanding the SQLCA include file, for example:

preprocess"cobsql" preprocess"cp" sy endp

You should always use CP's SY directive when processing Sybase code because Sybase expects to expand the SQLCA itself.

As Oracle can produce code with either COMP or COMP-5 variables, it has two sets of copyfiles. The standard sqlca.cob, oraca.cob and sqlda.cob all have COMP data items. The sqlca5.cob, oraca5.cob and sqlda5.cob files have COMP-5 data items. If you are using the comp5=yes Oracle directive, you must set the COBSQL directive MAKESYN to convert the COMP items in the SQLCA to COMP-5.

If CP produces errors when attempting to locate copyfiles, check to make sure that the OSEXT and COPYEXT Compiler directives are set correctly. COPYEXT should be set first and should include as its first entry the extension used for source files (.pco or .eco, for example).

If these are set correctly, ensure that the copyfile is either in the current directory or in a directory on the COBCPY path.

When using CP in conjunction with COBSQL, SQL errors inside included copyfiles will be reported correctly. Without CP, the line counts will be wrong, and the error will either go unreported or will appear on the wrong line.

9.4 National Language Support (NLS)

COBSQL error messages can be displayed in different languages depending on the setting of the LANG environment variable. For full details on NLS and how to set the LANG environment variable, see the chapter Internationalization Support in your Programmer's Guide to Writing Programs. For details on the LANG environment variable see the appendix Micro Focus Environment Variables in your Server Express User's Guide.

The COBSQL error message cobsql.lng has been translated into a number of different languages and can be found with the COBOL NLS message files. If there is not an error message cobsql.lng for the current setting of LANG, then the default error message file is used.


Note: COBSQL does not translate any error messages produced by the database precompilers.


9.5 Examples

The following examples show, for the Oracle Sybase and Informix precompilers, command lines that you can enter at the Server Express Command Prompt to compile a program using COBSQL.

Oracle

cob -a -v -k sample.pco -C "p(cobsql) cstop 
    cobsqltype==ORACLE"

Sybase

cob -a -v -P -k example1.pco -C"p(cobsql) csp CSQLT==syb"

Informix

cob -a -k demo1.eco -C "p(cobsql) cobsqltype==informix-new"

9.6 Troubleshooting

If you experience problems using COBSQL, first of all check the following:

Then, if you still experience problems, please contact MERANT Technical Support. To help Technical Support locate the cause of the problem:

9.6.1 Common Problem Areas

If you cannot locate the source of the problem, then check each of the following:

9.6.2 Oracle Considerations

You can use Oracle Pro*COBOL 1.8 or Oracle Pro*COBOL 8.x. The following sections describe the items to consider for each of these versions.

9.6.2.1 Oracle Pro*COBOL 1.8 Considerations

9.6.2.2 Oracle Pro*COBOL 8.x Considerations

Support for Pro*COBOL 8.0 has been added to COBSQL which now works correctly with the Pro*COBOL 8.0 4.0 precompiler.

9.6.2.2.1 Oracle 8 Directives for COBSQL

To use COBSQL with Oracle 8, you should use the following directives:

Directive
Description
CBL2ORA8
C28
This puts calls into the Oracle 8 specific support modules ora8prot and ora8lib. Both of these modules are built into csqlsupp.dll.
COBSQLTYPE
CSQLT
EXEC SQL preprocessor. Use the options ORACLE8 and ORA8 to use Pro*COBOL 8.x with COBSQL.
9.6.2.2.2 Migrating Oracle Versions

If you are migrating programs from Pro*COBOL 1.x to 8.x, you should be aware of the following:

9.6.2.2.3 Oracle 8 and MERANT

Pro*COBOL 8.x rejects some MERANT Micro Focus COBOL language extensions, data definitions and section headings:

To overcome this you need to put these items into copyfiles which are not opened by Pro*COBOL. However, this does not work if you use CP which expands copyfiles before Pro*COBOL is invoked. This could cause a problem if you are using htmlpp which calls CP to expand copyfiles. You must therefore invoke htmlpp before COBSQL.

For example, the following compile line works:

COBOL PROG P(HTMLPP) PREPROCESS(COBSQL) CSQLT=ORACLE8

whereas this line does not:

COBOL PROG PREPROCESS(COBSQL) CSQLT=ORACLE8 P(HTMLPP)

You must define at least one variable within the Working-Storage Section for Pro*COBOL 8.0.4 to add its variables to the generated .cbl file.

9.6.3 Sybase Considerations

9.6.4 Informix Considerations


Copyright © 2000 MERANT International Limited. All rights reserved.
This document and the proprietary marks and names used herein are protected by international law.

PreviousDB2 Reserved KeywordsNext