IBM Books

Administrative API Reference

SQLE-NODE-APPC

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

Table 32. Fields in the SQLE-NODE-APPC Structure
Field Name Data Type Description
LOCAL_LU CHAR(8) Local_lu name.
PARTNER_LU CHAR(8) Alias Partner_lu name.
MODE CHAR(8) Mode.
Note:The character fields passed in this structure must be null terminated or blank filled up to the length of the field.

Language Syntax

C Structure



/* File: sqlenv.h */
/* Structure: SQLE-NODE-APPC */
/* ... */
SQL_STRUCTURE sqle_node_appc
{
  _SQLOLDCHAR    local_lu[SQL_LOCLU_SZ + 1];
  _SQLOLDCHAR    partner_lu[SQL_RMTLU_SZ + 1];
  _SQLOLDCHAR    mode[SQL_MODE_SZ + 1];
};
/* ... */
 

COBOL Structure



* File: sqlenv.cbl
01 SQL-NODE-APPC.
    05 LOCAL-LU               PIC X(8).
    05 FILLER                 PIC X.
    05 PARTNER-LU             PIC X(8).
    05 FILLER                 PIC X.
    05 TRANS-MODE             PIC X(8).
    05 FILLER                 PIC X.
*
 


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

[ DB2 List of Books | Search the DB2 Books ]