|
Sybernet / Supplied Procedures Reference
Release 3.00 Oct 14, 2002 |
|
This procedure can be used to suspend execution of the calling process.
Procedure SLEEP
(
SECONDS BINARY_INTEGER
) ;
| Parameter | Description |
|---|---|
seconds |
The number of seconds to sleep. |
The following block illustrates how to sleep for 10 seconds:
declare
howlong number:=10;
begin
http.sleep(howlong);
end;