Access,MySQL,MS SQL Server数据库连接池配置方法

时间:2022-12-03 06:38:17

多种数据库连接池的配置,在部署报表应用的时候,由于用户使用的数据库不一样,所以数据连接池配置写法也大不相同,下面介绍一下AccessMySQLMS SQL Server数据库连接池的写法,把配置信息加入到Tomcat中的server.xml文件里.

注意:本配置说明针对Tomcat5.5Tomcat6.0

1MySQL的数据库连接池的配置
<Host></Host>之间添加
<Context docBase=”test” path=”/test”>
<Resource name=”jdbc/test” type=”javax.sql.DataSource” driverClassName=”com.mysql.jdbc.Driver” maxIdle=”100″ maxWait=”5000″ username=”root” password=”123456″ url=”jdbc:mysql://localhost:3306/test” maxActive=”4″/>
</Context>

web.xml中添加
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/test</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>

2MS SQL server2000数据库连接池的配置
<Host></Host>之间添加
<Context docBase=”test” path=”/test”>
<Resource name=”jdbc/leagu” type=”javax.sql.DataSource” driverClassName=”com.jnetdirect.jsql.JSQLDriver” maxIdle=”100″ maxWait=”5000″ username=”sa” password=”123″ url=”jdbc:JSQLConnect://localhost:1433/database=league” maxActive=”4″/>
</Context>

web.xml中添加:
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/leagu</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>

3Access数据库的数据源配置

注意:在配置数据源时必须选择系统DSN,否则无法成功,因为tomcat访问数据源不是用当前用户进行访问。
<Host></Host>之间添加
<Context docBase=”test” path=”/test”>
<Resource name=”jdbc/leagu” type=”javax.sql.DataSource” driverClassName=”sun.jdbc.odbc.JdbcOdbcDriver” maxIdle=”100″ maxWait=”5000″ username=”" password=”" url=”jdbc:odbc:leagu” maxActive=”4″/>
</Context>
web.xml中添加:
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/leagu</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>