Hi,
I've some new questions
to GenericDataSource.
I put this in the struts-config.xml
<data-sources>
<data-source
autoCommit="false"
description="Example Data Source Configuration"
driverClass="sun.jdbc.odbc.JdbcOdbcDriver"
maxCount="4"
minCount="2"
password=""
url="jdbc:odbc:TEST"
user="sa"
/>
</data-sources>
I works well.
Here my questiions:
- How does struts manage the connections, if the session is closed cause
the user is gone ? Does it close automatic ?
- How can I share a "pool" of open connections between all of the
application's current users. ?