This structure is used to pass information from sqluexpr - Export.
Table 63. Fields in the SQLUEXPT-OUT Structure
| Field Name | Data Type | Description |
|---|---|---|
| SIZEOFSTRUCT | INTEGER | Size of the structure. |
| ROWSEXPORTED | INTEGER | Number of records exported from the database into the target file. |
Language Syntax
C Structure
/* File: sqlutil.h */
/* Structure: SQL-UEXPT-OUT */
/* ... */
SQL_STRUCTURE sqluexpt_out
{
unsigned long sizeOfStruct;
unsigned long rowsExported;
};
/* ... */
|
COBOL Structure
* File: sqlutil.cbl
01 SQL-UEXPT-OUT.
05 SQL-SIZE-OF-UEXPT-OUT PIC 9(9) COMP-5 VALUE 8.
05 SQL-ROWSEXPORTED PIC 9(9) COMP-5 VALUE 0.
*
|