New howto on OrionSupport: Using JDBC from Servlets

2000-10-24 Thread Joe Walnes
How to setup a JDBC data-source in Orion and access it using JNDI from Servlets/JSP. http://www.orionsupport.com/articles/jdbc.html -Joe Walnes

Re: New howto on OrionSupport: Using JDBC from Servlets

2000-10-24 Thread Christian Meunier
I would like to comment the article on one point, its really important to use Try{}Finally{} blocks to ensure that the connection will return to the pool. In the example, if the sql throws an exception, the connection ll never return to the pool. However in this code, the connection ll return to