File Write - Access Module

Teradata Tools and Utilities Access Modules Programmer Guide

Product
Access Module
Release Number
15.00
Language
English (United States)
Last Update
2018-09-27
dita:id
B035-2424
lifecycle
previous
Product Category
Teradata Tools and Utilities

File Write

The File Write function writes the provided block of data to a currently open file. The structure of the File Write function follows:

typedef struct _pmiRW
  char       EyeCatcher[pmiMAX_EC_LEN];/* Struct eyecatcher string */
  pmUInt32   StructLength;             /* Length of this structure */
  void      *FIData;
  pmUInt32   BufferLen;
  char      *Buffer;
} pmiRW_t;

where:

 

Parameter

Field

Description

EyeCatcher

input

Structure description string, such as pmWriteParms.

StructLength

input

Total structure length, including the EyeCatcher string.

FIData

input

Value provided by the Access Module in response to a previous open request call.

BufferLen

input

Length of the data block to be written.

Buffer

input

Pointer to the data block to be written.