Re: JDBC Connection Pooling

2009-06-04 Thread kiran vuppla
Below is the connection pooling using dbcp BasicDataSource. It all depends on the value you have given to "minIdle" propery when you started the application. As far I know it will never by default create pool

RE: JDBC Connection Pooling

2009-06-04 Thread Vinaya Tirikkovalluru
as soon as I started the application. Vinaya From: Erinc Arikan [mailto:erincari...@gmail.com] Sent: Thursday, June 04, 2009 3:05 PM To: user-java@ibatis.apache.org Subject: Re: JDBC Connection Pooling Thanks a lot Vinaya; I already read your

Re: JDBC Connection Pooling

2009-06-04 Thread Erinc Arikan
uld I consider using DBCP for pooling? Thanks in advance. Erinc On Thu, Jun 4, 2009 at 1:35 PM, Vinaya Tirikkovalluru < vinaya.tirikkovall...@converge.com> wrote: > Hi, > > > > I am not sure about iBatis taking care of connection pooling. But I had a > situation simila

RE: JDBC Connection Pooling

2009-06-04 Thread Vinaya Tirikkovalluru
Hi, I am not sure about iBatis taking care of connection pooling. But I had a situation similar to you I have noticed that the creation of the connection and closing the connection is taken care by iBatis. I have seen that in the production environment, where we have almost 100 concurrent user

JDBC Connection Pooling

2009-06-04 Thread Erinc Arikan
default take care of connection pooling?) or does it mean that all the traffic is processed over one jdbc connection? If latter is the case, I feel like having a connection pool will increase the performance significantly. Our system might process upto 1000 requests per second, under forementioned assum

Re: Connection Pooling

2009-06-03 Thread Clinton Begin
ption that more connections == better performance. Clinton On Wed, Jun 3, 2009 at 12:35 PM, Vinaya Tirikkovalluru < vinaya.tirikkovall...@converge.com> wrote: > Hi, > > > > I am using Ibatis+Jboss4.2.2 > > > > I have not configured connection pooling in Jboss. > > I

Connection Pooling

2009-06-03 Thread Vinaya Tirikkovalluru
Hi, I am using Ibatis+Jboss4.2.2 I have not configured connection pooling in Jboss. Ibatis takes care of everything. But I see a connection in the database which is open in the morning but still being used, like reused. I just see a couple of them and not too many. How could just the 2

Re: DAO Framework - how to disable connection pooling..

2008-10-09 Thread mfs
7;t knew at all before today > that iBatis DAO framework uses connection pooling internally. Anyways i am > somewhat struggling to figure out as to how to disable it..I dont have any > attribute relating to it (and thats why didnt knew at all) but apparently > a 10 connections pool i

Re: DAO Framework - how to disable connection pooling..

2008-10-09 Thread mfs
Thanks for the quick followup Larry I think i need to give some more details here... I have already OracleAs (Oc4j) connection pooling setup, and the jndi datasource (jdbc/proxy) is already configured to use the very connection pool. Anyways, last night while trying to test as to what the

Re: DAO Framework - how to disable connection pooling..

2008-10-09 Thread Larry Meadors
l before today that > iBatis DAO framework uses connection pooling internally. Anyways i am > somewhat struggling to figure out as to how to disable it..I dont have any > attribute relating to it (and thats why didnt knew at all) but apparently a >

DAO Framework - how to disable connection pooling..

2008-10-09 Thread mfs
Ok, well these would sound funny, but i didn't knew at all before today that iBatis DAO framework uses connection pooling internally. Anyways i am somewhat struggling to figure out as to how to disable it..I dont have any attribute relating to it (and thats why didnt knew at all) but apparen

Re: connection pooling

2005-11-18 Thread mischa
what happens if the ping fails. does the connection getting removed from the pool? the reason why i don't have pinging enabled is because i want to control the case when a connection is closed for one cluster on my own (so i can switch to another cluster). even if i could solve the problem by pi

Re: [Fwd: [Fwd: Re: connection pooling]]

2005-11-18 Thread mischa
what happens if the ping fails. does the connection getting removed from the pool? the reason why i don't have pinging enabled is because i want to control the case when a connection is closed for one cluster on my own (so i can switch to another cluster). even if i could solve the problem by pi

Re: connection pooling

2005-11-17 Thread Clinton Begin
Do you have the ping query (or validation query) enabled? Cheers, ClintonOn 11/17/05, mischa <[EMAIL PROTECTED]> wrote: is there anything i can do to prevent ibatis from putting backconnetions to the pool when they are already closed? i am working withcluster pairs and when the connection to one

connection pooling

2005-11-17 Thread mischa
is there anything i can do to prevent ibatis from putting back connetions to the pool when they are already closed? i am working with cluster pairs and when the connection to one cluster fails i am switching back to another. it seems like the connection that failed/is closed is getting put back