DDL Compiler Commands
Data Definition Language (DDL) Reference Manual — 426798-002
9- 83
OUTPUT_SENSITIVE Command
STRUCT CUTNAME;
BEGIN STRING BYTE [1:10]; END;
STRUCT CDT^ID;
BEGIN STRING BYTE [1:6]; END;
END;
TAL output produced for KISHOY.
!?OUTPUT_SENSITIVE
!DEF emp.
!02 emp-NAME PIC X(10).
!02 emp-ID PIC 9(6) COMP.
!END.
Definition emp size is 14 bytes.
Definition emp added to dictionary.
#pragma section emp
/* Definition emp created on 03/06/2000 at 13:29 */
#pragma fieldalign shared2 __emp
typedef struct __emp
{
char emp_NAME[10];
unsigned long emp_ID;
} emp_def;
#define emp_def_Size 0
C output produced for emp.
?SECTION emp
?PAGE
! Definition emp created on 03/06/2000 at 13:29
STRUCT emp^DEF (*) FIELDALIGN (SHARED2);
BEGIN
STRUCT emp^NAME;
BEGIN STRING BYTE [1:10]; END;
INT(32) emp^ID;
END;
TAL output produced for emp.
Содержание 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 ...