Hi, in those applications there's typically no real need for connection pooling since you don't have thousands of users hitting the same database simultaneously. Just use the datasource as you did, with or without the pool activated (set poolsize to 0 for that). You will see no difference for your type of application.
HTH, Geert On 1/22/08, BBK <[EMAIL PROTECTED]> wrote: > > Hello Geert, > > Thanks for the prompt response. Kindly suggest how should connection > pooling be implemented for Eclipse based Desktop applications. > > Best regards, > Bala > > On Jan 21, 4:29 pm, "Geert Bevin" <[EMAIL PROTECTED]> wrote: > > Connection pooling will not work across application executions. It has > > particularly been design for something like web applications where you > > have a long running process that uses datasource for a long time. If > > your Java application stops executing, the connection pool will be > > closed too. > > > > On 1/21/08, BBK <[EMAIL PROTECTED]> wrote: > > > > > > > > > Hi All, > > > > > I'm a newbie to RIFE and I've started using it very recently. I would > > > like to understand how connection pooling is handled in RIFE. I tried > > > using the datasource object and found that the object is cleaned up > > > after for every execution (in void main). Any insight into RIFE's > > > connection pooling would be much appreciated. > > > > > Best regards, > > > BBK > > > > -- > > Geert Bevin > > Terracotta -http://www.terracotta.org > > Uwyn "Use what you need" -http://uwyn.com > > RIFE Java application framework -http://rifers.org > > Music and words -http://gbevin.com > > > -- Geert Bevin Terracotta - http://www.terracotta.org Uwyn "Use what you need" - http://uwyn.com RIFE Java application framework - http://rifers.org Music and words - http://gbevin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" 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/rife-users?hl=en -~----------~----~----~----~------~----~------~--~---
