DDL Compiler Commands
Data Definition Language (DDL) Reference Manual — 426798-002
9- 82
OUTPUT_SENSITIVE Command
•
In order to get case-sensitive output for a particular definition, record, or constant,
the OUTPUT_SENSITIVE compiler command should be used before adding that
definition, record, or constant to the dictionary.
•
If a definition, record, or constant is defined using the OUTPUT_SENSITIVE (or
NOOUTPUT_SENSITIVE) compiler command, then the user must use the same
definition while requesting output for that definition, record, or constant.
OUTPUT_SENSITIVE Command Example
The following examples illustrate the use of the OUTPUT_SENSITIVE and
NOOUTPUT_SENSITIVE compiler commands:
> DDL
! ?DICT
! ?C
! ?TAL
! ?NOOUTPUT_SENSITIVE
! DEF kiSHOy.
! 02 cuTNAME PIC X(10).
! 02 cdT-ID PIC 9(6) .
! END.
!?DICT
Audited dictionary created on subvol $ADE101.BUG.
Dictionary opened on subvol $ADE101.BUG for update access.
!?C
/* SCHEMA PRODUCED DATE - TIME : 3/06/2000 - 13:19:47 */
Output source for C is opened on $ZTN0.#PTS3Z89
!?TAL
! SCHEMA PRODUCED DATE - TIME : 3/06/2000 - 13:19:55
Output source for TAL is opened on $ZTN0.#PTS3Z89
!?NOOUTPUT_SENSITIVE
!DEF kiSHOy.
!02 cuTNAME PIC X(10).
!02 cdT-ID PIC 9(6) .
!END.
Definition KISHOY size is 16 bytes.
Definition KISHOY added to dictionary.
#pragma section kishoy
/* Definition KISHOY created on 03/06/2000 at 13:20 */
#pragma fieldalign shared2 __kishoy
typedef struct __kishoy
{
char cutname[10];
char cdt_id[6];
} kishoy_def;
#define kishoy_def_Size 0
C output produced for KISHOY.
?SECTION KISHOY
?PAGE
! Definition KISHOY created on 03/06/2000 at 13:20
STRUCT KISHOY^DEF (*) FIELDALIGN (SHARED2);
BEGIN
Содержание DDL D40
Страница 36: ...Introduction to DDL Data Definition Language DDL Reference Manual 426798 002 1 14 Examining a Dictionary ...
Страница 66: ...Named Constants Data Definition Language DDL Reference Manual 426798 002 4 10 Standard SPI Constants ...
Страница 230: ...Dictionary Manipulation Statements Data Definition Language DDL Reference Manual 426798 002 8 14 SHOW USE OF Statement ...
Страница 370: ...Dictionary Maintenance Data Definition Language DDL Reference Manual 426798 002 10 24 Converting a Dictionary ...
Страница 456: ...Sample Schemas Data Definition Language DDL Reference Manual 426798 002 B 12 ASSNDDL Statements ...
Страница 470: ...DDL Data Translation Data Definition Language DDL Reference Manual 426798 002 C 14 ...
Страница 528: ...Dictionary Reports Data Definition Language DDL Reference Manual 426798 002 E 8 Requesting Reports ...
Страница 552: ...DDL Alignment Rules Data Definition Language DDL Reference Manual 426798 002 H 4 FIELDALIGN_SHARED8 Alignment Rules ...
Страница 576: ...Index Data Definition Language DDL Reference Manual 426798 002 Index 22 Special Characters ...