HI,
I receive this message :
[cobol] * CSQL-I-020: Processing output of Oracle Precompiler
[cobol] * CSQL-I-027: Detected Working-Storage, now processing it
[cobol] * CSQL-I-028: Now processing through Procedure Division
[cobol] * CSQL-I-029: Found an EXEC SQL Statement, processing it
[cobol] * CSQL-I-001: Cobsql has finished returning to the Checker
[cobol] 22*Maximum memory (bytes) used: 115992
[cobol] COBCH0804S Source limit of 2200 procedure lines exceeded : "C:\Users\Vandeverre - Motte\workspace\dbcon\Program2.cbl"(22,7,7)
[cobol] Compilation complete with 1 errors, 0 warnings, 0 notices and an exit code of 16
i'm working with eclipse Under Windows with oracle 11g with this program :
IDENTIFICATIONDIVISION.
PROGRAM-ID. program2.
ENVIRONMENTDIVISION.
DATADIVISION.
WORKING-STORAGESECTION.
execsql include sqlca end-exec
EXECSQL BEGIN DECLARE SECTION END-EXEC.
01 USERNAME PIC X(10).
01 PASSWD PIC X(10).
EXECSQLEND DECLARE SECTION END-EXEC.
PROCEDUREDIVISION.
LOGON.
MOVE"SCOTT"TO USERNAME.
MOVE"TIGER"TO PASSWD.
EXECSQL
CONNECT :USERNAME IDENTIFIEDBY :PASSWD
END-EXEC.
DISPLAY sqlcode
stoprun.