<!-- maximum number of db connections in pool. make sure you configure your mysqld max_connections large enough to handle all of your db connections. set to 0 for no limit.-->
<parameter>
<name>maxactive</name>
<value>50</value>
</parameter>
<!-- maximum number of idle db connections to retain in pool. set to 0 for no limit.-->
<parameter>
<name>maxidle</name>
<value>20</value>
</parameter>
<!-- maximum time to wait for a db connection to become available in ms, in this example 0.5 seconds. an exception is thrown if this timeout is exceeded. set to -1 to wait indefinitely. -->
<parameter>
<name>maxwait</name>
<value>500</value>
</parameter>
<!-- mssql db username and password for db connections -->
<!-- the jdbc connection url for connecting to your ms sql server db.the autoreconnect=true argument to the url makes sure that the mm.sql server jdbc driver will automatically reconnect if mysqld closed the connection. mysqld by default closes idle connections after 8 hours.-->