Data Definition Language (DDL) Reference Manual
DDL Compiler Commands
Data Definition Language (DDL) Reference Manual—529431-004
9-104
TACLGEN
TACLGEN
The TACLGEN command specifies a TACL source code generation product version.
Default: TACLGEN 0
0
specifies the current product version of TACL.
Because the DDL compiler generates only one product version of TACL code at the
current time, the TACLGEN command does not affect output.
Example 9-53. TACL Command
DDL Input
?DICT
?TACL \dallas.$data.sales.taclsrc
OUTPUT RECORD customer.
DDL Output (TACL Code)
?Section CUSTOMER Struct
Begin
STRUCT CUSTNUM;
BEGIN CHAR BYTE(0:3); END;
STRUCT CUSTNAME;
Begin
STRUCT LAST^NAME;
BEGIN CHAR BYTE(0:11); END;
STRUCT FIRST^NAME;
BEGIN CHAR BYTE(0:7); END;
STRUCT MIDINIT;
BEGIN CHAR BYTE(0:1); END;
End;
STRUCT ADDR;
Begin
STRUCT ADDRESS;
BEGIN CHAR BYTE(0:21); END;
STRUCT CITY;
BEGIN CHAR BYTE(0:13); END;
STRUCT STATE;
BEGIN CHAR BYTE(0:1); END;
STRUCT ZIP;
BEGIN CHAR BYTE(0:4); END;
End;
End;
TACLGEN 0