* Standard COBOL (file "XTS735.SCO") calling SQL * procedures in file "XTS735.MCO".
*Copyright 1995 National Computing Centre Limited *and Computer Logic R&D S.A *on behalf of the CTS5 SQL2 Project. *All rights reserved. *The CTS5 SQL2 Project is sponsored by the European Community. * *The National Computing Centre Limited and Computer Logic R&D *have given permission to NIST to distribute this program *over the World Wide Web in order to promote SQL standards. *DISCLAIMER: *This program was reviewed by employees of NIST for *conformance to the SQL standards. *NIST assumes no responsibility for any party's use of *this program.
**************************************************************** * * COMMENT SECTION * * SQL VALIDATION TEST SUITE V6.0 * * XTS735.SCO * WRITTEN BY: Nickos Backalidis * TRANSLATED AUTOMATICALLY FROM EMBEDDED COBOL BY CHRIS SCHANZLE * * INSERT National character literal in NCHAR column * * REFERENCES * 13.8 -- <insert statement> * 5.3 -- <Literal> * 6.1 -- <data type> * 6.1 SR.2 * F#3 -- Basic Schema manipulation * F#42 -- <National character> * * DATE LAST ALTERED 18/12/95 CTS5 Hand-over Test * * Cleanups and fixes by V. Kogakis 07/12/95 * print timestamp * Include Files * Define NOSUBCLASS/CHCKOK at test beginning * * QA STATUS : QA CHECK * *Revised by DWF 1996-02-07 * Removed status checks after cursor definitions * Fixed SDL transactions * Fixed national character string literals * Fixed C declaration * Fixed string length ****************************************************************
DISPLAY" " DISPLAY"When the character set name of NATIONAL CHARACTER
- " is known" DISPLAY"please use TED hooks to replace VANGELIS with the
- " " DISPLAY"implementation dependent national
- " name>" DISPLAY"and the values used in nat. char. literals with
- " permissible" DISPLAY"values from that specific character set
- " repertoire." DISPLAY" "
DISPLAY"DECLARE F CURSOR FOR SELECT C1,C2" DISPLAY"FROM CTS1.TAB735" DISPLAY"ORDER BY C1;" * EXEC SQL DECLARE F CURSOR FOR SELECT C1,C2 * FROM CTS1.TAB735 * ORDER BY C1 END-EXEC
DISPLAY"OPEN F;" * EXEC SQL OPEN F; CALL"SUB9"USING SQLCODE SQLSTATE MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY" "
*initialise host variables MOVE 0 TO col1 MOVE"xxxxxxxxxxxx"TO col2 MOVE 99 TO indic1
*now start fetching rows *fetch first row DISPLAY"FETCH F INTO :col1,:col2:indic1;" * EXEC SQL FETCH F INTO :col1,:col2:indic1; CALL"SUB10"USING SQLCODE SQLSTATE col1 col2 indic1 MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"col1 should be 1; its value is ", col1 DISPLAY"col2 should be NULL indicated by -1; its value is
- " ", indic1 if (col1 NOT = 1 OR indic1 NOT = -1) then MOVE 0 TO flag END-IF DISPLAY" "
*initialise host variables MOVE 0 TO col1 MOVE"xxxxxxxxxxxx"TO col2
*fetch second row DISPLAY"FETCH F INTO :col1,:col2;" * EXEC SQL FETCH F INTO :col1,:col2; CALL"SUB11"USING SQLCODE SQLSTATE col1 col2 MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"col1 should be 2; its value is ", col1 DISPLAY"col2 should be '!'; its value is ", col2 if (col1 NOT = 2 OR col2 NOT = "!") then MOVE 0 TO flag END-IF DISPLAY" "
*initialise host variables MOVE 0 TO col1 MOVE"xxxxxxxxxxxx"TO col2
*fetch third row DISPLAY"FETCH F INTO :col1,:col2;" * EXEC SQL FETCH F INTO :col1,:col2; CALL"SUB12"USING SQLCODE SQLSTATE col1 col2 MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY"col1 should be 3; its value is ", col1 DISPLAY"col2 should be ' !'; its value is ", col2 if (col1 NOT = 3 OR col2 NOT = " !") then MOVE 0 TO flag END-IF DISPLAY" "
*end fetches *now close the cursor DISPLAY"CLOSE F;" * EXEC SQL CLOSE F; CALL"SUB13"USING SQLCODE SQLSTATE MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY" "
*now restore database in its original state DISPLAY"DROP TABLE TAB735 CASCADE;" * EXEC SQL DROP TABLE TAB735 CASCADE; CALL"SUB15"USING SQLCODE SQLSTATE MOVE SQLCODE TO SQL-COD PERFORM CHCKOK DISPLAY" "
if ( flag = 1 ) then DISPLAY" xts735.mco *** pass *** " * EXEC SQL INSERT INTO CTS1.TESTREPORT * VALUES('7035','pass','MCO'); CALL"SUB17"USING SQLCODE SQLSTATE MOVE SQLCODE TO SQL-COD else DISPLAY" xts735.mco *** fail *** " * EXEC SQL INSERT INTO CTS1.TESTREPORT * VALUES('7035','fail','MCO'); CALL"SUB18"USING SQLCODE SQLSTATE MOVE SQLCODE TO SQL-COD COMPUTE errcnt = errcnt + 1 END-IF
DISPLAY"========================================"
* EXEC SQL COMMIT WORK; CALL"SUB19"USING SQLCODE SQLSTATE MOVE SQLCODE TO SQL-COD ******************** END TEST7035 ********************
**** 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.14 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.