On Dec 28, 2:53 pm, daniel_spaniel <[email protected]> wrote: > I think its Pervasive specific, so I will try overriding the execute / > run method in the subadapter we have for Pervasive. Do you think its > possible to cleanly retry the request in these cases? > Or is there a way to run a periodic test on the connections every > hour or so to see if they are still ok?
I'm not sure if it's possible to cleanly retry. For idempotent actions (selects with no side effects), it probably is, but otherwise it probably isn't. You could always run a command once an hour that spun up as many threads as the connection pool max, and tried to access the database through all at once. Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en.
