IBM Books

Administrative API Reference

SQLE-NODE-CPIC

This structure is used to catalog CPIC nodes (see sqlectnd - Catalog Node).

Table 34. 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.
Note:The character fields passed in this structure must be null terminated or blank filled up to the length of the field.

Valid values for SECURITY_TYPE (defined in sqlenv) are:

SQL_CPIC_SECURITY_NONE

SQL_CPIC_SECURITY_SAME

SQL_CPIC_SECURITY_PROGRAM

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.
*
 


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]

[ DB2 List of Books | Search the DB2 Books ]