**************************************************************** * * COMMENT SECTION * * DATE 1994/4/8 EMBEDDED COBOL LANGUAGE * NIST SQL VALIDATION TEST SUITE V6.0 * DISCLAIMER: * This program was written by employees of NIST to test SQL * implementations for conformance to the SQL standards. * NIST assumes no responsibility for any party's use of * this program. * * DML115.PCO * WRITTEN BY: David W. Flater * TRANSLATED AUTOMATICALLY FROM EMBEDDED C BY CHRIS SCHANZLE * * This routine tests FIPS features 13, 14, 15, and 16. * This is the dynamic version of DML114.PC. * * REFERENCES * FIPS PUB 127-2 14.1 Transitional SQL * ANSI SQL-1992 * ****************************************************************
MOVE"FLATER "TO uid CALL"AUTHID"USING uid MOVE"not logged in, not"TO uidx EXECSQLSELECT USER INTO :uidx FROM HU.ECCO END-EXEC MOVE SQLCODE TO SQL-COD EXECSQL ROLLBACK WORK END-EXEC MOVE SQLCODE TO SQL-COD if (uid NOT = uidx) then DISPLAY"ERROR: User ", uid " expected. User ", uidx "
- " connected" STOPRUN END-IF MOVE 0 TO errcnt
DISPLAY "SQL Test Suite, V6.0, Embedded COBOL, dml115.pco" DISPLAY "59-byte ID" DISPLAY"TEd Version #" *date_time print ACCEPT TO-DAY FROMDATE ACCEPT THE-TIME FROMTIME DISPLAY"Date run YYMMDD: " TO-DAY " at hhmmssff: " THE-TIME
******************** BEGIN TEST0636 ******************* MOVE 1 TO flag
DISPLAY"COMMIT WORK;" EXECSQL COMMIT WORK END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY" "
*Removal of leveling rule 2a of Subclause 7.3 *Removal of leveling rule 2c of Subclause 7.9 *Removal of leveling rule 2b of Subclause 13.5
EXECSQLDELETEFROM CONCATBUF END-EXEC MOVE SQLCODE TO SQL-COD EXECSQLINSERTINTO CONCATBUF VALUES ( 'SELECT EMPNUM, SUM (HOURS) FROM WORKWEEK' || ' WHERE HOURS > 20 GROUP BY EMPNUM' || ' HAVING EMPNUM = ''E1'''
) END-EXEC MOVE SQLCODE TO SQL-COD EXECSQLSELECT ZZ INTO :longst FROM CONCATBUF END-EXEC MOVE SQLCODE TO SQL-COD
DISPLAY"longst=""", longst """"
DISPLAY"PREPARE S11511 FROM :longst;" EXECSQL PREPARE S11511 FROM :longst END-EXEC MOVE SQLCODE TO SQL-COD
PERFORM CHCKOK DISPLAY" "
DISPLAY"DECLARE C11511 CURSOR FOR S11511;" EXECSQL DECLARE C11511 CURSOR FOR S11511 END-EXEC DISPLAY" "
MOVE"xyz"TO ch1 DISPLAY"FETCH C11511 INTO :ch1, :int1;" EXECSQL FETCH C11511 INTO :ch1, :int1 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"ch1 should be 'E1 '; its value is '", ch1 "'" DISPLAY"int1 should be 120; its value is ", int1 if (ch1 NOT = "E1 "OR int1 NOT = 120) then MOVE 0 TO flag END-IF
COMPUTE int1 = -1 DISPLAY"FETCH C11512 INTO :int1;" EXECSQL FETCH C11512 INTO :int1 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"int1 should be 3; its value is ", int1 if (int1 NOT = 3) then MOVE 0 TO flag END-IF
MOVE"aaaaaaaaaaaaaaaaaaaa"TO ch2 DISPLAY"FETCH C11513 INTO :ch2;" EXECSQL FETCH C11513 INTO :ch2 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"ch2 should be Alice; its value is ", ch2 if (ch2 NOT = "Alice") then MOVE 0 TO flag END-IF
COMPUTE int1 = -1 COMPUTE int2 = -1 MOVE"xxx"TO ch1 MOVE"xxx"TO ch4 DISPLAY"FETCH C11514 INTO :int1, :ch1, :ch4, :int2;" EXECSQL FETCH C11514 INTO :int1, :ch1, :ch4, :int2 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"int1 should be 10; its value is ", int1 DISPLAY"ch1 should be 'E4 '; its value is '", ch1 "'" DISPLAY"ch4 should be 'E1 '; its value is '", ch4 "'" DISPLAY"int2 should be 43; its value is ", int2 if (int1 NOT = 10 OR ch1 NOT = "E4 ") then MOVE 0 TO flag END-IF if (ch4 NOT = "E1 "OR int2 NOT = 43) then MOVE 0 TO flag END-IF
MOVE"aaaaaaaaaaaaaaaaaaaa"TO ch2 DISPLAY"FETCH C11515 INTO :ch2;" EXECSQL FETCH C11515 INTO :ch2 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"ch2 should be Alice; its value is ", ch2 if (ch2 NOT = "Alice") then MOVE 0 TO flag END-IF
EXECSQLDELETEFROM CONCATBUF END-EXEC MOVE SQLCODE TO SQL-COD EXECSQLINSERTINTO CONCATBUF VALUES ( 'SELECT EMPNAME FROM HU.STAFF WHERE EMPNUM =' || ' (SELECT EMPNUM FROM HU.WORKS' || ' GROUP BY EMPNUM, HOURS' || ' HAVING HOURS = 12)'
) END-EXEC MOVE SQLCODE TO SQL-COD EXECSQLSELECT ZZ INTO :longst FROM CONCATBUF END-EXEC MOVE SQLCODE TO SQL-COD
DISPLAY"longst=""", longst """"
DISPLAY"PREPARE S11516 FROM :longst;" EXECSQL PREPARE S11516 FROM :longst END-EXEC MOVE SQLCODE TO SQL-COD
PERFORM CHCKOK DISPLAY" "
DISPLAY"DECLARE C11516 CURSOR FOR S11516;" EXECSQL DECLARE C11516 CURSOR FOR S11516 END-EXEC DISPLAY" "
MOVE"aaaaaaaaaaaaaaaaaaaa"TO ch2 DISPLAY"FETCH C11516 INTO :ch2;" EXECSQL FETCH C11516 INTO :ch2 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"ch2 should be Alice; its value is ", ch2 if (ch2 NOT = "Alice") then MOVE 0 TO flag END-IF
.
P100. COMPUTE int1 = -1 DISPLAY"FETCH C11517 INTO :int1;" EXECSQL FETCH C11517 INTO :int1 END-EXEC MOVE SQLCODE TO SQL-COD DISPLAY"SQLCODE is ", SQL-COD DISPLAY"SQLSTATE is ", SQLSTATE if (SQLCODE NOT = 0) then GOTO P101 END-IF DISPLAY"int1 is ", int1 COMPUTE ctr3 = ctr3 - 1 if (int1 = 1) then COMPUTE ctr2 = ctr2 - 1 END-IF if (int1 = 3) then COMPUTE ctr1 = ctr1 - 1 END-IF GOTO P100
.
P101. if (ctr1 NOT = 0 OR ctr2 NOT = 0 OR ctr3 NOT = 0) then MOVE 0 TO flag END-IF PERFORM NOSUBCLASS THRU EXIT-NOSUBCLASS if (SQLCODE NOT = 100 OR NORMSQ NOT = "02000") then MOVE 0 TO flag END-IF if (NORMSQ = "02000"AND NORMSQ NOT = SQLSTATE) then DISPLAY"Valid implementation-defined SQLSTATE accepted." END-IF DISPLAY" "
*Let the commit close the cursor
DISPLAY"COMMIT WORK;" EXECSQL COMMIT WORK END-EXEC MOVE SQLCODE TO SQL-COD
EXECSQL COMMIT WORK END-EXEC MOVE SQLCODE TO SQL-COD ******************** END TEST0636 ******************** ******************** BEGIN TEST0638 ******************* MOVE 1 TO flag
COMPUTE int1 = -1 DISPLAY"FETCH C11521 INTO :int1;" EXECSQL FETCH C11521 INTO :int1 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"int1 should be 12; its value is ", int1 if (int1 NOT = 12) then MOVE 0 TO flag END-IF
COMPUTE int1 = -1 DISPLAY"FETCH C11522 INTO :int1;" EXECSQL FETCH C11522 INTO :int1 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"int1 should be 10; its value is ", int1 if (int1 NOT = 10) then MOVE 0 TO flag END-IF
MOVE"xxx"TO ch1 MOVE"xxxxxxxxxxxxxxx"TO ch3 COMPUTE int1 = -1 COMPUTE int2 = -1 DISPLAY"FETCH C11523 INTO :ch1, :int1, :ch3, :int2;" EXECSQL FETCH C11523 INTO :ch1, :int1, :ch3, :int2 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"ch1 should be 'E3 '; its value is '", ch1 "'" if (ch1 NOT = "E3 ") then MOVE 0 TO flag END-IF DISPLAY"int1 should be 13; its value is ", int1 if (int1 NOT = 13) then MOVE 0 TO flag END-IF DISPLAY"ch3 should be 'Vienna '; its value is '",
ch3 "'" if (ch3 NOT = "Vienna ") then MOVE 0 TO flag END-IF DISPLAY"int2 should be 20; its value is ", int2 if (int2 NOT = 20) then MOVE 0 TO flag END-IF
EXECSQLDELETEFROM CONCATBUF END-EXEC MOVE SQLCODE TO SQL-COD EXECSQLINSERTINTO CONCATBUF VALUES ( 'SELECT HU.STAFF.*, HOURS FROM HU.STAFF, HU.WORKS' || ' WHERE HU.STAFF.EMPNUM = HU.WORKS.EMPNUM' || ' AND EMPNAME > ''Betty'' ORDER BY EMPNAME'
) END-EXEC MOVE SQLCODE TO SQL-COD EXECSQLSELECT ZZ INTO :longst FROM CONCATBUF END-EXEC MOVE SQLCODE TO SQL-COD
DISPLAY"longst=""", longst """"
DISPLAY"PREPARE SJOANS FROM :longst;" EXECSQL PREPARE SJOANS FROM :longst END-EXEC MOVE SQLCODE TO SQL-COD
PERFORM CHCKOK DISPLAY" "
DISPLAY"DECLARE CJOANS CURSOR FOR SJOANS;" EXECSQL DECLARE CJOANS CURSOR FOR SJOANS END-EXEC
MOVE"xxx"TO ch1 MOVE"xxxxxxxxxxxxxxxxxxxx"TO ch2 MOVE"xxxxxxxxxxxxxxx"TO ch3 COMPUTE int1 = -1 COMPUTE int2 = -1 DISPLAY"FETCH CJOANS INTO :ch1, :ch2, :int1, :ch3, :int2;" EXECSQL FETCH CJOANS INTO :ch1, :ch2, :int1, :ch3, :int2 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"ch1 should be 'E3 '; its value is '", ch1 "'" if (ch1 NOT = "E3 ") then MOVE 0 TO flag END-IF DISPLAY"ch2 should be 'Carmen '; its value is
- " '", ch2 "'" if (ch2 NOT = "Carmen ") then MOVE 0 TO flag END-IF DISPLAY"int1 should be 13; its value is ", int1 if (int1 NOT = 13) then MOVE 0 TO flag END-IF DISPLAY"ch3 should be 'Vienna '; its value is '",
ch3 "'" if (ch3 NOT = "Vienna ") then MOVE 0 TO flag END-IF DISPLAY"int2 should be 20; its value is ", int2 if (int2 NOT = 20) then MOVE 0 TO flag END-IF
COMPUTE int1 = -1 DISPLAY"FETCH C11524 INTO :int1;" EXECSQL FETCH C11524 INTO :int1 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"int1 should be 12; its value is ", int1 if (int1 NOT = 12) then MOVE 0 TO flag END-IF
COMPUTE int1 = -1 DISPLAY"FETCH C11525 INTO :int1;" EXECSQL FETCH C11525 INTO :int1 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"int1 should be 10; its value is ", int1 if (int1 NOT = 10) then MOVE 0 TO flag END-IF
MOVE"xxx"TO ch1 MOVE"xxxxxxxxxxxxxxx"TO ch3 COMPUTE int1 = -1 COMPUTE int2 = -1 DISPLAY"FETCH C11526 INTO :ch1, :int1, :ch3, :int2;" EXECSQL FETCH C11526 INTO :ch1, :int1, :ch3, :int2 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"ch1 should be 'E3 '; its value is '", ch1 "'" if (ch1 NOT = "E3 ") then MOVE 0 TO flag END-IF DISPLAY"int1 should be 13; its value is ", int1 if (int1 NOT = 13) then MOVE 0 TO flag END-IF DISPLAY"ch3 should be 'Vienna '; its value is '",
ch3 "'" if (ch3 NOT = "Vienna ") then MOVE 0 TO flag END-IF DISPLAY"int2 should be 20; its value is ", int2 if (int2 NOT = 20) then MOVE 0 TO flag END-IF
EXECSQL COMMIT WORK END-EXEC MOVE SQLCODE TO SQL-COD ******************** END TEST0638 ******************** ******************** BEGIN TEST0640 ******************* MOVE 1 TO flag
COMPUTE int1 = -1 DISPLAY"FETCH C11531 INTO :int1;" EXECSQL FETCH C11531 INTO :int1 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"int1 should be 5; its value is ", int1 if (int1 NOT = 5) then MOVE 0 TO flag END-IF
EXECSQLDELETEFROM CONCATBUF END-EXEC MOVE SQLCODE TO SQL-COD EXECSQLINSERTINTO CONCATBUF VALUES ( 'SELECT EMPNUM, GRADE, CITY' || ' FROM Flater.staff WHERE EMPNAME > ''Betty''' || ' ORDER BY EMPNUM'
) END-EXEC MOVE SQLCODE TO SQL-COD EXECSQLSELECT ZZ INTO :longst FROM CONCATBUF END-EXEC MOVE SQLCODE TO SQL-COD
DISPLAY"longst=""", longst """"
DISPLAY"PREPARE S11532 FROM :longst;" EXECSQL PREPARE S11532 FROM :longst END-EXEC MOVE SQLCODE TO SQL-COD
PERFORM CHCKOK DISPLAY" "
DISPLAY"DECLARE c11532 CURSOR FOR S11532;" EXECSQL DECLARE c11532 CURSOR FOR S11532 END-EXEC DISPLAY" "
MOVE"xxx"TO ch1 MOVE"xxxxxxxxxxxxxxx"TO ch3 COMPUTE int1 = -1 DISPLAY"FETCH C11532 INTO :ch1, :int1, :ch3;" EXECSQL FETCH C11532 INTO :ch1, :int1, :ch3 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"ch1 should be 'E3 '; its value is '", ch1 "'" if (ch1 NOT = "E3 ") then MOVE 0 TO flag END-IF DISPLAY"int1 should be 13; its value is ", int1 if (int1 NOT = 13) then MOVE 0 TO flag END-IF DISPLAY"ch3 should be 'Vienna '; its value is '",
ch3 "'" if (ch3 NOT = "Vienna ") then MOVE 0 TO flag END-IF
EXECSQL COMMIT WORK END-EXEC MOVE SQLCODE TO SQL-COD ******************** END TEST0640 ******************** ******************** BEGIN TEST0642 ******************* MOVE 1 TO flag
DISPLAY"COMMIT WORK;" EXECSQL COMMIT WORK END-EXEC MOVE SQLCODE TO SQL-COD
PERFORM CHCKOK DISPLAY" "
DISPLAY"dstmt=""INSERT INTO FEAT16 VALUES (?, ?)""" MOVE"INSERT INTO FEAT16 VALUES (?, ?) " TO dstmt
DISPLAY"PREPARE S11541 FROM :dstmt;" EXECSQL PREPARE S11541 FROM :dstmt END-EXEC MOVE SQLCODE TO SQL-COD
PERFORM CHCKOK DISPLAY" "
MOVE 1 TO int1 MOVE 10 TO int2 DISPLAY"int1 = ", int1 "; int2 = ", int2 DISPLAY"EXECUTE S11541 USING :int1, :int2;" EXECSQL EXECUTE S11541 USING :int1, :int2 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY" "
MOVE 2 TO int1 MOVE 20 TO int2 DISPLAY"int1 = ", int1 "; int2 = ", int2 DISPLAY"EXECUTE S11541 USING :int1, :int2;" EXECSQL EXECUTE S11541 USING :int1, :int2 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY" "
MOVE 1 TO int1 MOVE 30 TO int2 DISPLAY"int1 = ", int1 "; int2 = ", int2 DISPLAY"EXECUTE S11541 USING :int1, :int2;" EXECSQL EXECUTE S11541 USING :int1, :int2 END-EXEC MOVE SQLCODE TO SQL-COD DISPLAY"SQLCODE should be < 0; its value is ", SQL-COD if (SQLCODE NOT < 0) then MOVE 0 TO flag END-IF DISPLAY"SQLSTATE should be 23000; its value is ", SQLSTATE PERFORM NOSUBCLASS THRU EXIT-NOSUBCLASS if (NORMSQ NOT = "23000") then MOVE 0 TO flag END-IF if (NORMSQ = "23000"AND NORMSQ NOT = SQLSTATE) then DISPLAY"Valid implementation-defined SQLSTATE accepted." END-IF DISPLAY" "
MOVE 3 TO int1 MOVE 20 TO int2 DISPLAY"int1 = ", int1 "; int2 = ", int2 DISPLAY"EXECUTE S11541 USING :int1, :int2;" EXECSQL EXECUTE S11541 USING :int1, :int2 END-EXEC MOVE SQLCODE TO SQL-COD DISPLAY"SQLCODE should be < 0; its value is ", SQL-COD if (SQLCODE NOT < 0) then MOVE 0 TO flag END-IF DISPLAY"SQLSTATE should be 23000; its value is ", SQLSTATE PERFORM NOSUBCLASS THRU EXIT-NOSUBCLASS if (NORMSQ NOT = "23000") then MOVE 0 TO flag END-IF if (NORMSQ = "23000"AND NORMSQ NOT = SQLSTATE) then DISPLAY"Valid implementation-defined SQLSTATE accepted." END-IF DISPLAY" "
*Multiple nulls are OK -- See 8.9 GR.2
MOVE 3 TO int1 COMPUTE indic1 = -1 DISPLAY"int1 = ", int1 "; indic1 = -1" DISPLAY"EXECUTE S11541 USING :int1, :int2:indic1;" EXECSQL EXECUTE S11541 USING :int1, :int2:indic1 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY" "
MOVE 4 TO int1 COMPUTE indic1 = -1 DISPLAY"int1 = ", int1 "; indic1 = -1" DISPLAY"EXECUTE S11541 USING :int1, :int2:indic1;" EXECSQL EXECUTE S11541 USING :int1, :int2:indic1 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY" "
MOVE 5 TO int1 COMPUTE indic1 = -1 DISPLAY"int1 = ", int1 "; indic1 = -1" DISPLAY"EXECUTE S11541 USING :int1, :int2:indic1;" EXECSQL EXECUTE S11541 USING :int1, :int2:indic1 END-EXEC MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY" "
DISPLAY"COMMIT WORK;" EXECSQL COMMIT WORK END-EXEC MOVE SQLCODE TO SQL-COD
EXECSQL COMMIT WORK END-EXEC MOVE SQLCODE TO SQL-COD ******************** END TEST0642 ******************** **** TESTER MAY CHOOSE TO INSERT CODE FOR errcnt > 0 STOPRUN.
* **** Procedures for PERFORM statements
*Test SQLCODE and SQLSTATE for normal completion.
CHCKOK. DISPLAY"SQLCODE should be 0; its value is ", SQL-COD DISPLAY"SQLSTATE should be 00000; its value is ", SQLSTATE PERFORM NOSUBCLASS THRU EXIT-NOSUBCLASS if (SQLCODE NOT = 0 OR NORMSQ NOT = "00000") then MOVE 0 TO flag END-IF if (NORMSQ = "00000"AND NORMSQ NOT = SQLSTATE) then DISPLAY"Valid implementation-defined SQLSTATE accepted." END-IF
.
NOSUBCLASS.
*This routine replaces valid implementation-defined *subclasses with 000. This replacement equates valid *implementation-defined subclasses with the 000 value *expected by the test case; otherwise the test will fail. *After calling NOSUBCLASS, NORMSQ will be tested * SQLSTATE will be printed.
MOVE SQLSTATE TO NORMSQ
MOVE 3 TO norm1 *subclass begins in position 3 of char array NORMSQ *valid subclass begins with 5-9, I-Z, end of ALPNUM table PERFORMVARYING norm2 FROM 14 BY 1 UNTIL norm2 > 36 if (NORMSQX(norm1) = ALPNUM(norm2)) then MOVE"0"TO NORMSQX(norm1) END-IF END-PERFORM
*Quit if NORMSQ is unchanged. Subclass is not impl.-def. *Changed NORMSQ means implementation-defined subclass, *so proceed to zero it out, if valid (0-9,A-Z) if (NORMSQ = SQLSTATE) then GOTO EXIT-NOSUBCLASS END-IF
MOVE 4 TO norm1 *examining position 4 of char array NORMSQ *valid characters are 0-9, A-Z PERFORMVARYING norm2 FROM 1 BY 1 UNTIL norm2 > 36 if (NORMSQX(norm1) = ALPNUM(norm2)) then MOVE"0"TO NORMSQX(norm1) END-IF END-PERFORM
MOVE 5 TO norm1 *valid characters are 0-9, A-Z *examining position 5 of char array NORMSQ PERFORMVARYING norm2 FROM 1 BY 1 UNTIL norm2 > 36 if (NORMSQX(norm1) = ALPNUM(norm2)) then MOVE"0"TO NORMSQX(norm1) END-IF END-PERFORM
*implementation-defined subclasses are allowed for warnings *(class = 01). These equate to successful completion *SQLSTATE values of 00000. *Reference SQL-92 4.28 SQL-transactions, paragraph 2
if (NORMSQX(1) = "0"AND NORMSQX(2) = "1") then MOVE"0"TO NORMSQX(2) END-IF
.
EXIT-NOSUBCLASS. EXIT.
¤ Dauer der Verarbeitung: 0.34 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.