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 :
IDENTIFICATION DIVISION.
PROGRAM-ID. program2.
ENVIRONMENT DIVISION.
DATA DIVISION.
WORKING-STORAGE SECTION.
exec sql include sqlca end-exec
EXEC SQL BEGIN DECLARE SECTION END-EXEC.
01 USERNAME PIC X(10).
01 PASSWD PIC X(10).
EXEC SQL END DECLARE SECTION END-EXEC.
PROCEDURE DIVISION.
LOGON.
MOVE "SCOTT" TO USERNAME.
MOVE "TIGER" TO PASSWD.
EXEC SQL
CONNECT :USERNAME IDENTIFIED BY :PASSWD
END-EXEC.
DISPLAY sqlcode
stop run.
#COBOL