This structure is used to catalog IPX/SPX nodes (see sqlectnd - Catalog Node).
Table 26. 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. | ||
| ||||
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.
*
|