Let's see, quick comparison:
SQLite:
- dynamic typing in the database,
- cross-platform files
- runs on Windows, Linux, Mac, etc.
- public domain,
- supports transactions.
- relies on file system security, does not include own security
Firebird embedded:
- strong typing in the database
, though
- not all SQL datatypes are supported,
- cross-platform files
,
- Firebird embedded only runs on Windows
- Files from Firebird embedded are in the same format as the full server version
- Files from Firebird embedded can be copied to a non-Windows server for use
- available under a modified MPL ("what's ours is ours and must remain free, what's yours is yours and you don't have to release it"), it")
- supports transactions, triggers, etc.
MySQL embedded:
- support for SQL features depends on file format,
- (IIRC) cross-platform files,
- GPL unless you pay royalties
- runs on Windows, Linux, Mac
- incredibly popular .with the open source crowd
Even embedded databases have their strengths and weaknesses. You'll need to weigh those strengths and weaknesses against what you're doing to decide.
