SQLite - fudforum/FUDforum GitHub Wiki
FUDforum provides out of the box support for SQLite databases.
SQLite is extremely fast, probably the fasted database supported, but is only suitable for small forums (a couple of thousand posts maximum).
To check if your database is OK, navigate to the SQL Manager and run:
pragma integrity_check;
If problems are detected, run:
reindex; vacuum;