[JBoss-user] [EJB/JBoss] - Re: JBOSS connection pool caching problem

2005-01-17 Thread utkarshpanwar
Hi, No i am not using any Are you using entity beans. See the code below To get the connection private static Connection getConnectionFromPool() throws Exception { if (ds == null) { ctx = new InitialContext(); ds = (DataSource) ctx.lookup(env.getProperty("data

[JBoss-user] [EJB/JBoss] - Re: JBOSS connection pool caching problem

2005-01-03 Thread HariV
Are you using entity beans for reding and writing from your tables. Please check your commit-option If you dont need caching you can use commit-option C. If the data can be changed from other applications running outside the jboss container you should not use commit-option A. Use either commit-o