View Single Post
Old 07-14-2009, 08:54 AM   #3 (permalink)
v1_0
Registered User
 
Join Date: Dec 2008
Posts: 5
OS: XP


Re: Java Progress Bar Not Showing Progress

One thing to think about: if your database transactions take a different amount of time each, then your progress is just 'number of transactions' as opposed to 'time'.

Is it possible that your first transaction is taking a very long time (perhaps things are getting cached, or you are doing a select), and all your other transactions are very quick? In that case, your status bar will sit for a while (as no transactions are completed) then 'jump' to done as your 2-n transactions get done quickly.
v1_0 is offline   Reply With Quote