Pro*COBOL Precompiler Getting Started
Release 8.1.6 for Windows

Part Number A73024-01

Library

Product

Contents

Index

Go to previous page Go to next page

2
Building Pro*COBOL Applications

This chapter provides an overview of building Oracle database applications with Pro*COBOL release 8.1.6 and 1.8.51 for Windows Platforms. Specific topics discussed are:

Precompiling Pro*COBOL Applications

This section describes the basics of precompiling a Pro*COBOL application.

See Also:

See the Pro*COBOL Precompiler Programmer's Guide for more information about Pro*COBOL commands, precompiler options, and configuration files. 

The Pro*COBOL Commands

You can use one of three commands to precompile a file:

Use...  For Pro*COBOL Release... 

procob filename 

8.1.6 

procob18 filename 

1.8.51 

By default, if no extension is provided, Pro*COBOL tries to open filename.pco. If the ONAME option is not specified, Pro*COBOL generates a file named filename.cbl.

Precompiler Options

Many useful options are available at precompile time. Included are options that allow you to determine how:

Viewing the Available Options

To see a list of available options and their default values, enter the following at the MS-DOS command prompt:

C:\> procob

To see the option, defaults, and the restrictions (if any) on values, enter the following at the MS-DOS command prompt:

C:\> procob /?

Configuration Files

Pro*COBOL reads the configuration file for options before processing options supplied at the command line.

The configuration file has the following two options:

Check the following table to see whether you should change the value of comp5:

If you are using Fujitsu COBOL...  If you are using MERANT Micro Focus COBOL... 

comp5 must be set to yes (comp5=yes).

  • All COMP data items (if they are potential host variables) are converted to COMP-5.

  • All data items generated by the precompiler will be declared as COMP-5.

 

comp5 can be set to yes (comp5=yes) or no (comp5=no).

If comp5=yes:

  • All COMP data items (if they are potential host variables) are converted to COMP-5.

  • All data items generated by the precompiler will be declared as COMP-5.

If comp5=no:

  • The precompiler ignores COMP-5 host variables.

  • Precompiled files generally do not run on Intel platforms.

Workaround: During the compilation stage, use the MERANT Micro Focus COBOL compiler directive:

MAKESYN "COMP-5" = "COMP"

This statement directs the compiler to treat COMP items as if they are COMP-5 items. 

The INCLUDE option enables the provided .COB files in the oracle_base\oracle_home \precomp\public directory to be included without an explicit INCLUDE= option at the command line.

MAXLITERAL Option for Fujitsu COBOL

If you are using the Fujitsu COBOL compiler, set the MAXLITERAL option to 160. The Fujitsu COBOL compiler cannot handle string literals that are longer than 160 characters. You can set this option in the configuration file as well as at the command line. The default value of the MAXLITERAL option is 256.

Using Embedded PL/SQL

If you are using embedded PL/SQL blocks, do the following:

  1. Enter the SQLCHECK option and the USERID string to connect at the precompiling command line.

  2. Specify the SQLCHECK=FULL option to check the syntax or semantics of embedded SQL statements and PL/SQL blocks.

    See Also:

    For an example of a command line string, see the Pro*COBOL Precompiler Programmer's Guide or review the PL/SQL MAKE file. 

Compiling and Linking Pro*COBOL Applications

This section describes how to compile and link Pro*COBOL applications using the following compilers:

Fujitsu Compiler

You can build and execute a Fujitsu COBOL application in two ways:

Using Fujitsu COBOL Project Manager

Programs generated by Pro*COBOL can be compiled and executed from within Fujitsu COBOL Project Manager.

To avoid potential inconsistencies when calling routines in the Oracle libraries, use the "COMP5=YES" option. This step is required because binary numbers for COBOL BINARY/COMP data are stored in Big Endian format. Oracle libraries expect binary numbers to be stored in Little Endian format (machine format).

To debug the application using the Interactive Debugger WINSVD when the COBOL application is compiled, the compiler option TEST must be selected.

When you click Build/Rebuild, COBOL Project Manager generates the executable and WINSVD debug information.

After building the application, you can debug the application using the Interactive Debugger WINSVD. To start WINSVD, choose Debug from the Tools menu of COBOL Project Manager.

Using the COBOL32 and LINK Commands

For release 8.1.6, the following commands can be used to build an executable:

COBOL32 -M sample1.cbl
LINK sample1.obj f3bicimp.lib libc.lib kernel32.lib user32.lib
/out:sample1.exe oracle_base\oracle_home \precomp\lib\orasql8.lib

For release 1.8.51, the following commands can be used to build an executable:

COBOL32 -M sample1.cbl
LINK sample1.obj f3bicimp.lib libc.lib kernel32.lib user32.lib
/out:sample1.exe oracle_base\oracle_home \precomp\lib\orasql8.lib

These commands produce sample1.exe, which can be executed like any other Windows NT or Windows 95/98 program.

For release 8.1.6, the following commands can be used to build an executable for debugging:

COBOL32 -M -Dt sample1.cbl
LINK sample1.obj f3bicimp.lib libc.lib kernel32.lib user32.lib
/out:sample1.exe oracle_base\oracle_home \precomp\lib\orasql8.lib 
/DEBUG /DEBUGTYPE:COFF

For release 1.8.51, the following commands can be used to build an executable for debugging:

COBOL32 -M -Dt sample1.cbl
LINK sample1.obj f3bicimp.lib libc.lib kernel32.lib user32.lib
/out:sample1.exe oracle_base\oracle_home \precomp\lib\orasql8.lib 
/DEBUG /DEBUGTYPE:COFF

These commands produce sample1.exe, as well as WINSVD debug information. Fujitsu COBOL applications can be debugged using the Interactive Debugger WINSVD.

MERANT Micro Focus Compiler

You can build and execute a MERANT Micro Focus COBOL application in two ways:

In each of these the COBSQL utility may be used with the following advantages:

Using the IDE

A program generated by Pro*COBOL can be compiled and executed from within the MERANT Micro Focus NetExpress IDE. Simply add the .cbl file generated by Pro*COBOL to a Net Express project. To avoid potential inconsistencies when calling routines in the Oracle libraries the program should be compiled using the directive:

MAKESYN "COMP-5" = "COMP"

This directive can be specified in the build setting for the source file, the project settings or via a $SET line at the start of the source file. When you select Rebuild or Rebuild All the IDE generates an executable ready to Run or Animate.

Using Animator

Programs can be compiled and executed from within the MERANT Micro Focus COBOL debugger, Animator V2.

To avoid potential inconsistencies when calling routines in the Oracle libraries, select the menu option Compiler Directives, and enter:

MAKESYN "COMP-5" = "COMP"

This step is required because MERANT Micro Focus COBOL stores binary numbers in Big Endian format. Oracle libraries expect binary numbers to be stored in Little Endian format (machine format).

Using the COBOL and CBLLINK Commands

COBOL and CBLLINK can be used to build programs can be in two ways, depending on whether the Pro*COBOL runtime is to be statically linked or accessed through a DLL at runtime.

For dynamic linking the commands are:

 COBOL sample1 /MAKESYN"COMP-5"="COMP";
 CBLLINK sample1

For static linking Pro*COBOL 8.1.6 the commands are:

 COBOL sample1 /LITLINK /MAKESYN"COMP-5"="COMP";
 CBLLINK sample1 oracle_base\oracle_home \precomp\lib\orasql8.lib

For static linking Pro*COBOL 1.8.51 the commands are:

 COBOL sample1 /LITLINK /MAKESYN"COMP-5"="COMP";
 CBLLINK sample1 oracle_base\oracle_home \precomp\lib\orasql8.lib

The previous commands produce sample1.exe, which can be executed like any other Windows NT or Windows 95/98 program.


Note:

MERANT Micro Focus COBOL must be installed on the same system as Pro*COBOL to successfully execute the file. 


Using COBSQL

COBSQL can be used to simplify preprocessing and debugging. To use COBSQL, specify the following directive to the COBOL compiler:

PREPROCESS(COBSQL) COBSQLTYPE=ORACLE8 ENDP

or the short form:

P(COBSQL) CSQLT=ORA8 ENDP

COBSQLTYPE should be set to ORACLE or ORA for versions of Pro*COBOL prior to release 8.0. The directive may be set with a $SET line at the start of the source file, on the COBOL command line, in program build settings or project settings for NetExpress, or with SQL compiler directives settings for Animator. At compile time, COBSQL runs Pro*COBOL as a background task and passes its output to the COBOL compiler together with additional information required to enable Animator to track execution using the .pco file rather than .cbl file.

When using COBSQL there is no need to deal directly with the .cbl file. Instead, add the .pco file to a NetExpress project, or open it with Animator.

Sample Programs

Oracle provides sample programs to demonstrate the use of Pro*COBOL with Oracle database features. See "Sample Files" for a listing of these programs.

This section describes how to use the basic precompiling, compiling, and linking commands to build the sample programs. This section also describes the preparations required for running the Pro*COBOL sample programs.

Building the Demonstration Tables

To run the Pro*COBOL sample programs, you must have a database account with the user name SCOTT and the password TIGER. If this account does not exist on your database, create one before running the sample programs.

The SCOTT account must contain the EMP and DEPT tables. If the account does not contain these tables, use the demobld.sql script to create them.

To run the demobld.sql script:
  1. Start SQL*Plus.

  2. Connect to the database as user name SCOTT with password TIGER.

  3. Run the demobld.sql script. For example:

    SQL> @ORACLE_BASE\ORACLE_HOME\SQLPLUS\DEMO\DEMOBLD.SQL
    
    

Building the Sample Programs

Pro*COBOL supplies batch files for building the sample files:

For release 8.1.6, the batch files are located in oracle_base\oracle_home \precomp\demo\procob. For release 1.8.51, the files are located in oracle_base\oracle_home \precomp\demo\procob2.

To build the sample programs, run the batch files with any sample file. Do not provide the file extension. For example:

C:\ORACLE\ORA81\PRECOMP\DEMO\PROCOB2> fjmakeit sample1
C:\ORACLE\ORA81\PRECOMP\DEMO\PROCOB2> makeit sample1

If you encounter errors when building the sample programs, ensure that all paths and file names reflect the configuration of your system. The commands to run the sample programs assume that the following are the current working directories:

You may need to modify the sample link script to reflect the configuration of your system. See "Compiling and Linking Pro*COBOL Applications" for more information.

Fujitsu Compiler

The fjmakeit.bat for release 8.1.6 contains the following:

procob  iname=%1.pco ireclen=132 maxliteral=160
cobol32 -M %1.cbl
link %1.obj f3bicimp.lib libc.lib kernel32.lib user32.lib
/out:%1.exe oracle_base\oracle_home \precomp\lib\orasql8.lib

For release 1.8.51, this batch file contains the following:

procob18 iname=%1.pco ireclen=132 maxliteral=160 
cobol32 -M %1.cbl
link %1.obj f3bicimp.lib libc.lib kernel32.lib user32.lib
/out:%1.exe oracle_base\oracle_home \precomp\lib\orasql8.lib

MERANT Micro Focus Compiler

The makeit.bat for release 8.1.6 contains the following:

procob iname=%1.pco ireclen=132 
cobol %1 /anim /litlink makesyn "COMP-5" = "COMP"; 
cbllink %1 /M%1 oracle_base\oracle_home \precomp\lib\orasql8.lib

For release 1.8.51, this batch file contains the following:

procob18 iname=%1.pco ireclen=132
cobol %1 /ganim /litlink makesyn "COMP-5" = "COMP";
cbllink %1 /M%1 oracle_base\oracle_home \precomp\lib\orasql8.lib

Sample Files

The Pro*COBOL sample files listed in Table 2-1, "Pro*COBOL Sample Programs" are located in the oracle_base\oracle_home \precomp\demo\procob2 (release 8.1.6) and/or oracle_base\oracle_home \precomp\demo\procob (release 1.8.51) directories. The SQL scripts are located in the oracle_base\oracle_home \precomp\demo\sql directory.

Table 2-1 Pro*COBOL Sample Programs

Sample Program  Description 

sample1.pco 

Simple query 

sample2.pco 

Cursor operations 

sample3.pco 

Host tables 

sample4.pco 

Datatype equivalence 

sample6.pco 

Dynamic SQL Method 1 

sample7.pco 

Dynamic SQL Method 2 

sample8.pco 

Dynamic SQL Method 3 

sample9.pco
calldemo.sql
 

Stored procedure call 

sample10.pco 

Dynamic SQL Method 4 

sample11.pco
sample11.sql
 

Cursor variable operations 

sample12.pco 

Dynamic SQL Method 4 using ANSI dynamic SQL 

sample13.pco 

Nested program 

sampleco.pco 

Simple query and insert 

sample14.pco 

Host table x (release 8.1.6 only) 

lobdemo1.pco 

LOB datatypes (release 8.1.6 only) 

lobdemo1.sql 

LOB datatypes (release 8.1.6 only) 


Go to previous page Go to next page
Oracle
Copyright © 1996-2000, Oracle Corporation.

All Rights Reserved.

Library

Product

Contents

Index