The READ_LINE procedure reads a line of text from the HTTP response body and ends when it encounters a newline character.
Note
This system package is introduced in V4.4.1.
UTL_HTTP.READ_LINE(
r IN OUT NOCOPY resp,
data OUT NOCOPY VARCHAR2 CHARACTER SET ANY_CS,
remove_crlf IN BOOLEAN DEFAULT FALSE);
Parameters
| Parameter | Description |
|---|---|
| r | The HTTP request. |
| data | The HTTP response body in text format. |
| remove_crlf | Whether to remove newline characters. The default value is False. |