The READ_TEXT procedure reads text data.
Note
This system package is available 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. If not specified, the maximum number of characters is read into data. |