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