Re: Does ping really work?

2009-06-15 Thread Zsolt Koppany
Thank you Larry, I also found that at startup we get a connection from the pool that is not closed. But as far as I understand "Pool.MaximumCheckoutTime" should guarantee that a connection cannot be used longer that 20 seconds (in our case). Do I miss something? Zsolt Larry Meadors wrote:

Re: Does ping really work?

2009-06-15 Thread Larry Meadors
Google is your friend: http://forums.mysql.com/read.php?39,199085,204628#msg-204628 Larry On Mon, Jun 15, 2009 at 3:39 AM, Zsolt Koppany wrote: > Hi, > > I get an exception attached at the end. Here are the ibatis pool properties: > > Pool.MaximumActiveConnections=20 > Pool.MaximumIdleConnection

Parameter Query

2009-06-15 Thread josephotoole
Hi Just wondering does parameter.property support the structure -> property="beanName.property" Refer to the 2nd parameter below(period is a bean belonging to FinancialData) Thanks -- View this message in context: http://www.nabble.com/Parameter-Query-tp24032448p24032448.html Sent from

Does ping really work?

2009-06-15 Thread Zsolt Koppany
Hi, I get an exception attached at the end. Here are the ibatis pool properties: Pool.MaximumActiveConnections=20 Pool.MaximumIdleConnections=5 Pool.MaximumCheckoutTime=2 Pool.TimeToWait=2 Pool.PingEnabled=true Pool.PingQuery=SELECT 1 FROM always_one_row Pool.PingConnectionsOlderThan=0 P

Re: Memeory leak in com.iBatis.sqlmap.engine.impl.SqlMapClientImpl class

2009-06-15 Thread ankurgur
Hi Richard, This is the DAOFactory Singelton implementation // public class DAOFactory { private static final Logger logger = Logger.getLogger(DAOFactory.class.getName()); private static final String resource = "dao.xml"; private static DAOF