com.TCPResponse.getDataResponse

Returns a TCP response in binary format.

Syntax

getDataResponse(
   data BYTE )
  1. data defines a BYTE variable that will hold the response data in binary format. The BYTE variable must be located IN MEMORY.

Usage

This method retrieves the TCP response in binary format into the data variable passed as parameter. The method will read the TCP stream, until the peer closes the connection.

Note: The data variable must be located IN MEMORY.

In case of error, the method throws an exception and sets the STATUS variable. Depending on the error, a human-readable description of the problem is available in the SQLCA.SQLERRM register. See Error handling in GWS calls (STATUS).

The INT_FLAG variable is checked during GWS API call to handle program interruptions, for more details, see Interruption handling in GWS calls (INT_FLAG)