December 2002
Intermediate to advanced
928 pages
85h 29m
English
FUNCTION UTL_HTTP.GET_PERSISTENT_CONN_COUNT
RETURN PLS_INTEGER;
Returns the number of persistent connections maintained by the UTL_HTTP package.
PROCEDURE UTL_HTTP.GET_PERSISTENT_CONN
(connections IN OUT NOCOPY CONNECTION_TABLE);
Returns the persistent connection maintained by the UTL_HTTP package.
PROCEDURE UTL_HTTP.CLOSE_PERSISTENT_CONN
(conn IN connection);
Closes the persistent connection conn.
PROCEDURE UTL_HTTP.CLOSE_PERSISTENT_CONNS
(host IN VARCHAR2 DEFAULT NULL,
port IN PLS_INTEGER DEFAULT NULL,
proxy_host IN VARCHAR2 DEFAULT NULL,
proxy_port IN PLS_INTEGER DEFAULT NULL,
ssl IN BOOLEAN DEFAULT NULL);
Closes persistent connections for port on host or proxy_port on proxy_host. If ssl, closes persistent SSL connection. Making the call without any parameters closes all persistent connections.