Tudu Lists uses the Hibernate persistence layer, so it should work seamlessly on most databases (in fact, we have seen it working with MySQL, Postgresql, MS SQL Server, HSQLDB and Oracle).
However, developement is focused on the HSLQDB and MySQL databases :
HSQLDB is bundled into Tudu Lists, and is automatically launched at application start up, if MySQL is not found.
So there is nothing to do (excepted shutting down MySQL if you also have a production database running).
Download MySQL at http://www.mysql.com/, and follow the instructions in order to install the database.
If you're using Windows or Mac OS X, an easy-to-use graphical installer is provided.
If you're running Linux, chances are that MySQL is already running on your system, or that a simple "apt-get install mysql" will do the trick.
Now that MySQL is installed, let's create the "tudu" database.
Using a graphical front-end could help for following the next steps. There are a lot of different front-ends for MySQL, but you could use :
Now follow the next steps (we're using MySQL Query Browser in the screenshots) :
Step 1 : create the "tudu" schema.

Step 2 : In the "tudu" database, open the create_schema_mysql.sql script. This script is provided in the "sql/" directory of the Tudu Lists distribution (Note that before Tudu Lists 2.0, it was located in the "src/sql" directory, and that before version 1.1.1, is was in stored in the "sql/" directory). If you want the latest version of this script, it is available in the Subversion repository.

Step 3 : Execute the script (with MySQL Query Browser, click on the green "Execute" icon).

You should now have a ready-to-work version of the "tudu" database :

Tudu Lists searches the MySQL instance in 2 different ways :
If you want to use this second option, and if you have changed something in the default configuration (your password, for example), then you will have to edit the applicationContext-jpa.xml configuration file.
This file is located inside the Tudu Lists web application :
The datasource configuration is at the beginning of this file : it is a commons-dbcp datasource configuration, you can find information on all those settings on the Commons DBCP website.