READ_TEXT is used to read data in text format.
Note
This system package was introduced starting from V4.4.1.
Syntax
UTL_HTTP.READ_TEXT(
r IN OUT NOCOPY resp,
data OUT NOCOPY VARCHAR2 CHARACTER SET ANY_CS,
len IN PLS_INTEGER DEFAULT NULL);
Parameters
Parameter |
Description |
|---|---|
| r | The HTTP request. |
| data | The text data read from the HTTP response body. |
| len | The number of bytes to read. The default value is empty, which means to read as much data as possible into data. |
