SQLite
The test database is a SQLite database.
Why SQLite?
- fast
- "lite"
- The Simplest Thing That Could Possibly Work
- All data in one file
- There's a Class::DBI driver for it, so your CDBI code can talk to it seamlessly
- ...as long as you don't do stuff SQLite doesn't support (so far I haven't)