how do you create a progress bar [message #101701] |
Tue, 16 April 2002 05:34 |
scott
Messages: 73 Registered: September 1999
|
Member |
|
|
I am currently creating a file sharing system in oracle 8i and I desperatley need to implement a progress bar when downloading files, I would appreciate any help.
|
|
|
Re: how do you create a progress bar [message #101704 is a reply to message #101701] |
Wed, 15 May 2002 06:24 |
andrew again
Messages: 2577 Registered: March 2000
|
Senior Member |
|
|
Any long running pl/sql can update it's progress in v$session. Any other session can read v$session to monitor progress.
begin
-- upload first 100k chunk
dbms_application_info.set_client_info('file upload 100k done');
-- upload next 100k chunk
dbms_application_info.set_client_info('file upload 200k done');
...
end;
|
|
|
|
|