IBM Books

Administrative API Reference

SQLE-NODE-IPXSPX

This structure is used to catalog IPX/SPX nodes (see sqlectnd - Catalog Node).

Table 35. Fields in the SQLE-NODE-IPXSPX Structure
Field Name Data Type Description
FILESERVER CHAR(48) Name of the NetWare file server where the DB2 server instance is registered.
OBJECTNAME CHAR(48) The database manager server instance is represented as the object, objectname, on the NetWare file server. The server's IPX/SPX internetwork address is stored and retrieved from this object.
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-IPXSPX */
/* ... */
SQL_STRUCTURE sqle_node_ipxspx
{
  char           fileserver[SQL_FILESERVER_SZ+1];
  char           objectname[SQL_OBJECTNAME_SZ+1];
};
/* ... */
 

COBOL Structure



* File: sqlenv.cbl
01 SQL-NODE-IPXSPX.
    05 SQL-FILESERVER         PIC X(48).
    05 FILLER                 PIC X.
    05 SQL-OBJECTNAME         PIC X(48).
    05 FILLER                 PIC X.
*
 


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

[ DB2 List of Books | Search the DB2 Books ]