@photostructure/sqlite
    Preparing search index...

    Variable Session

    Session: new () => Session

    The Session class for recording database changes. This class should not be instantiated directly; use DatabaseSync.createSession() instead.

    const session = db.createSession({ table: 'users' });
    // Make some changes to the users table
    const changeset = session.changeset();
    session.close();