This structure is used to pass information from sqluexpr - Export.
Table 74. 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 { sqluint32 sizeOfStruct; sqluint32 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. * |