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).

Checking DB integrity

To check if your database is OK, navigate to the SQL Manager and run:

 pragma integrity_check;

If problems are detected, run:

 reindex;
 vacuum;
⚠️ **GitHub.com Fallback** ⚠️