Hello,
 
How to encode one pool of connections for whole application ?
Should I encode this in some main servlet and then receive connection
from this servlet ?
 
In struts-config.xml I have a section:
    <data-sources>
    <data-source autoCommit="false"
       description="Trial access to database"
        driverClass="oracle.jdbc.driver.OracleDriver"
        maxCount="4"
        minCount="2"
        password="123"
             url="jdbc:oracle:thin:@ado:1521:123"
             user="123" />
 
  </data-sources>
 
 
tnx

Reply via email to