create progress bar while
my requirement is the user will click on stat that will stat execution of database procedure using jdbc connection
the procedure take long time to finish
so i want to in form the user about the record that has been inserted using progress bar hoe to do that in jsp
while this may be possible, it would require a great deal of interesting programming.
JDBC Calls typically wont return partial status, your database call will
start
then hang the application
till the end of query and return whatever results.
So avoid all that complexity, just some kind of animation that shows user that that their query is still running
Bookmarks