SQLite?

Is it possible to use SQLite instead of a full-blown DB? I think it would nice to have SQLite for smaller wikis.

Comments

  1. Re: SQLite?

    It is possible via PDO SQLite and the SQLite3 driver, but it needs an experienced user willing to implement and maintaining it.

    see
    • class/dbsqlite.php
    • class/dbpdo.php
    • setup/install-database.php
    • setup/install-database_sqlite.php
    • setup/install-database_sqlite_updates.php
    • WikiAdmin
    • 10/14/2025 21:33 edited
  2. Re: SQLite support implementation

    WackoWiki is now working with SQLite (see repohead).

    Import your database
    mysql2sqlite -f /home/user/Download/foo.sqlite -d db_name -u root -K	

    config.php
    'db_driver' => 'sqlite',
    'db_name' => 'file/data/db.sqlite',	

    If you have a local installation all should work as expected.

    ToDo
    • open installer issues
    • backup & restore
    • extensive testing
    • improve, rewrite and refactor functions
    • documentation
    • WikiAdmin
    • 10/14/2025 21:50 edited
Log in or create an account to post a comment.