This structure is used to catalog CPIC nodes (see sqlectnd - Catalog Node).
Table 36. Fields in the SQLE-NODE-CPIC Structure
Field Name | Data Type | Description | ||
---|---|---|---|---|
SYM_DEST_NAME | CHAR(8) | Symbolic destination name of remote partner. | ||
SECURITY_TYPE | SMALLINT | Security type. | ||
|
Valid values for SECURITY_TYPE (defined in sqlenv) are:
Language Syntax
C Structure
/* File: sqlenv.h */ /* Structure: SQLE-NODE-CPIC */ /* ... */ SQL_STRUCTURE sqle_node_cpic { _SQLOLDCHAR sym_dest_name[SQL_SYM_DEST_NAME_SZ+1]; unsigned short security_type; }; /* ... */ |
COBOL Structure
* File: sqlenv.cbl 01 SQL-NODE-CPIC. 05 SYM-DEST-NAME PIC X(8). 05 FILLER PIC X. 05 FILLER PIC X(1). 05 SECURITY-TYPE PIC 9(4) COMP-5. * |