<?xml version="1.0" encoding="UTF-8"?>
<!--
  -  Copyright 2001-2006 Geert Bevin <gbevin[remove] at uwyn dot com>
  -  Distributed under the terms of either:
  -  * the common development and distribution license (CDDL), v1.0; or
  -  * the GNU Lesser General Public License, v2.1 or later
  -  $Id: datasources.xml 3308 2006-06-15 18:54:14Z gbevin $
  -->

<!DOCTYPE datasources SYSTEM "/dtd/datasources.dtd">

<datasources>
    <datasource name="postgresql">
        <driver>org.postgresql.Driver</driver>
        <url>jdbc:postgresql://localhost:5432/rife</url>
        <user>rife</user>
        <password>rife</password>
        <poolsize>5</poolsize>
    </datasource>
    <datasource name="mysql">
        <driver>com.mysql.jdbc.Driver</driver>
        <url>jdbc:mysql://localhost:3306/rife</url>
        <user>rife</user>
        <password>rife</password>
        <poolsize>5</poolsize>
    </datasource>
</datasources>

