IBM Books

Administrative API Reference

SQLE-NODE-NETB

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

Table 37. Fields in the SQLE-NODE-NETB Structure
Field Name Data Type Description
ADAPTER SMALLINT Local LAN adapter.
REMOTE_NNAME CHAR(8) Nname of the remote workstation that is stored in the database manager configuration file on the server instance.
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-NETB */
/* ... */
SQL_STRUCTURE sqle_node_netb
{
  unsigned short adapter;
  _SQLOLDCHAR    remote_nname[SQL_RMTLU_SZ + 1];
};
/* ... */
 

COBOL Structure



* File: sqlenv.cbl
01 SQL-NODE-NETB.
    05 ADAPTER                PIC 9(4) COMP-5.
    05 REMOTE-NNAME           PIC X(8).
    05 FILLER                 PIC X.
    05 FILLER                 PIC X(1).
*
 


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

[ DB2 List of Books | Search the DB2 Books ]