You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Landaluze Produktions IS - Carlos <li...@lpis.com> on 2000/11/30 22:07:50 UTC

connection pool

in the tomcat conf file (server.xmlk) i have see that there is a conection
pool for oracle and mysql
1.- is posible to make a conecion pool to a MSQL server?
2.- if a am using a JDBC driver (rmijdbc) and the SQLserver ip is
192.168.1.3, how can i make a conection pool to this database?
i dont known how can i do it?
please help me
Thaks
Carlos


Re: connection pool

Posted by "Craig R. McClanahan" <Cr...@eng.sun.com>.

Landaluze Produktions IS - Carlos wrote:

> in the tomcat conf file (server.xmlk) i have see that there is a conection
> pool for oracle and mysql

This is not actually a connection pool.  It is configuring which JDBC driver
will be used by the JDBCRealm module to look up users for container-managed
security.  You can certainly use SQLServer for this as long as you have a JDBC
driver that supports it -- the details for how to configure the parameters for
this driver should be in the driver's documentation.

The basic entry in server.xml would look similar to the others -- you would
replace the class name with the class name of the driver you want to use, modify
the username and password parameters, and then set up the connection url however
the driver's documentation tells you to.

>
> 1.- is posible to make a conecion pool to a MSQL server?
> 2.- if a am using a JDBC driver (rmijdbc) and the SQLserver ip is
> 192.168.1.3, how can i make a conection pool to this database?
> i dont known how can i do it?
> please help me
> Thaks
> Carlos

Craig McClanahan